We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make
1 parent 37e8061 commit ebb088cCopy full SHA for ebb088c
.github/workflows/test.yml
@@ -22,7 +22,7 @@ jobs:
22
with:
23
deno-version: ${{ env.DENO_VERSION }}
24
- name: Lint
25
- run: deno lint
+ run: make lint
26
27
format:
28
runs-on: ubuntu-latest
@@ -32,8 +32,7 @@ jobs:
32
33
34
- name: Format
35
- run: |
36
- deno fmt --check
+ run: make fmt-check
37
38
test:
39
@@ -43,8 +42,7 @@ jobs:
43
42
44
45
- name: Test
46
47
- deno test
+ run: make test
48
timeout-minutes: 5
49
50
typecheck:
@@ -55,5 +53,4 @@ jobs:
55
53
56
54
57
- name: Type check
58
59
- deno test --unstable --no-run ./*.ts
+ run: make type-check
0 commit comments