File tree Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 24
24
with :
25
25
deno-version : ${{ env.DENO_VERSION }}
26
26
- name : Type check
27
- run : |
28
- deno test --unstable --no-run ./**/*.ts
27
+ run : make type-check
29
28
30
29
lint :
31
30
runs-on : ubuntu-20.04
36
35
with :
37
36
deno-version : ${{ env.DENO_VERSION }}
38
37
- name : Lint
39
- run : deno lint
38
+ run : make lint
40
39
41
40
format :
42
41
runs-on : ubuntu-20.04
47
46
with :
48
47
deno-version : ${{ env.DENO_VERSION }}
49
48
- name : Format
50
- run : |
51
- deno fmt --check
49
+ run : make fmt-check
52
50
53
51
test :
54
52
runs-on : ubuntu-20.04
90
88
env :
91
89
DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable }}
92
90
- name : Test
93
- run : |
94
- deno test --unstable -A
91
+ run : make test
95
92
env :
96
93
DENOPS_TEST_VIM : ${{ steps.vim.outputs.executable }}
97
94
DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable }}
Original file line number Diff line number Diff line change
1
+ /.tools
Original file line number Diff line number Diff line change
1
+ fmt : FORCE
2
+ @deno fmt
3
+
4
+ fmt-check : FORCE
5
+ @deno fmt --check
6
+
7
+ lint : FORCE
8
+ @deno lint
9
+
10
+ type-check : FORCE
11
+ @deno test --unstable --no-run ** /* .ts
12
+
13
+ test : FORCE
14
+ @deno test --unstable -A
15
+
16
+ FORCE :
You can’t perform that action at this time.
0 commit comments