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.
1 parent 486f9a8 commit 49b7f0cCopy full SHA for 49b7f0c
.github/workflows/test.yml
@@ -2,11 +2,11 @@ name: deno
2
3
env:
4
DENO_VERSION: 1.x
5
- DENOPS_PATH: "./denops.vim"
+ DENOPS_PATH: "../denops.vim"
6
7
on:
8
schedule:
9
- - cron: '0 7 * * 0'
+ - cron: "0 7 * * 0"
10
push:
11
branches:
12
- main
@@ -41,12 +41,18 @@ jobs:
41
test:
42
runs-on: ubuntu-20.04
43
44
+ defaults:
45
+ run:
46
+ working-directory: ./repo
47
+
48
steps:
49
- uses: actions/checkout@v2
50
+ with:
51
+ path: "./repo"
52
53
with:
54
repository: "vim-denops/denops.vim"
- path: "denops.vim"
55
+ path: "./denops.vim"
56
- uses: denoland/setup-deno@main
57
58
deno-version: ${{ env.DENO_VERSION }}
0 commit comments