-
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (27 loc) · 681 Bytes
/
checks.yml
File metadata and controls
35 lines (27 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: check
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Setup latest deno version
uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Run deno fmt
run: deno fmt --check
- name: Run deno lint
run: deno lint --unstable
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Setup latest deno version
uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Run deno test
run: deno test