File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: deno
2
2
3
3
env :
4
4
DENO_VERSION : 1.x
5
+ DENOPS_PATH : " ./denops.vim"
5
6
6
7
on :
7
8
schedule :
42
43
43
44
steps :
44
45
- uses : actions/checkout@v2
46
+ - uses : actions/checkout@v2
47
+ with :
48
+ repository : " vim-denops/denops.vim"
49
+ path : " denops.vim"
45
50
- uses : denoland/setup-deno@main
46
51
with :
47
52
deno-version : ${{ env.DENO_VERSION }}
53
+ - uses : rhysd/action-setup-vim@v1
54
+ id : vim
55
+ with :
56
+ version : " v8.1.2424"
57
+ - uses : rhysd/action-setup-vim@v1
58
+ id : nvim
59
+ with :
60
+ neovim : true
61
+ version : " v0.4.4"
62
+ - name : Check Vim
63
+ run : |
64
+ echo ${DENOPS_TEST_VIM}
65
+ ${DENOPS_TEST_VIM} --version
66
+ env :
67
+ DENOPS_TEST_VIM : ${{ steps.vim.outputs.executable }}
68
+ - name : Check Neovim
69
+ run : |
70
+ echo ${DENOPS_TEST_NVIM}
71
+ ${DENOPS_TEST_NVIM} --version
72
+ env :
73
+ DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable }}
48
74
- name : Test
49
75
run : |
50
- deno test
76
+ deno test --unstable -A
77
+ env :
78
+ DENOPS_TEST_VIM : ${{ steps.vim.outputs.executable }}
79
+ DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable }}
80
+ timeout-minutes : 5
You can’t perform that action at this time.
0 commit comments