File tree Expand file tree Collapse file tree 4 files changed +16
-41
lines changed Expand file tree Collapse file tree 4 files changed +16
-41
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,11 @@ jobs:
34
34
with :
35
35
deno-version : " ${{ matrix.version }}"
36
36
- name : Lint check
37
- run : make lint
38
- if : matrix.version == '1.x'
37
+ run : deno lint
39
38
- name : Format check
40
- run : make fmt-check
41
- if : matrix.version == '1.x'
39
+ run : deno fmt --check
42
40
- name : Type check
43
- run : make type- check
41
+ run : deno task check
44
42
45
43
test :
46
44
strategy :
94
92
env :
95
93
DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable_path }}
96
94
- name : Test
97
- run : make test
95
+ run : deno task test
98
96
env :
99
97
DENOPS_TEST_DENOPS_PATH : " ../denops.vim"
100
98
DENOPS_TEST_VIM_EXECUTABLE : ${{ steps.vim.outputs.executable_path }}
Original file line number Diff line number Diff line change 15
15
deno-version : " 1.x"
16
16
- name : Update dependencies
17
17
run : |
18
- make deps > ../output.txt
18
+ deno task upgrade > ../output.txt
19
19
env :
20
20
NO_COLOR : 1
21
21
- name : Read ../output.txt
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "lock" : false ,
3
+ "tasks" : {
4
+ "test" : " deno test --no-lock --unstable -A --doc --parallel --shuffle" ,
5
+ "check" : " deno check --no-lock --unstable $(find . -name '*.ts')" ,
6
+ "upgrade" : " deno run --no-lock -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')" ,
7
+ "gen:function" : " deno run --no-lock --unstable -A ./scripts/gen-function/gen-function.ts" ,
8
+ "gen:option" : " deno run --no-lock --unstable -A ./scripts/gen-option/gen-option.ts" ,
9
+ "gen" : " deno task gen:function && deno task gen:option && deno fmt"
10
+ }
11
+ }
You can’t perform that action at this time.
0 commit comments