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.
2 parents ba90c5f + 49b7f0c commit 3414988Copy full SHA for 3414988
.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
@@ -53,12 +53,18 @@ jobs:
53
test:
54
runs-on: ubuntu-20.04
55
56
+ defaults:
57
+ run:
58
+ working-directory: ./repo
59
+
60
steps:
61
- uses: actions/checkout@v2
62
+ with:
63
+ path: "./repo"
64
65
with:
66
repository: "vim-denops/denops.vim"
- path: "denops.vim"
67
+ path: "./denops.vim"
68
- uses: denoland/setup-deno@main
69
70
deno-version: ${{ env.DENO_VERSION }}
0 commit comments