Skip to content

Commit ac2df57

Browse files
authored
Merge pull request #288 from vim-denops/fix-pre-cache
Fix pre-cache step in GitHub Actions workflow
2 parents d87b762 + 311a9e2 commit ac2df57

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ on:
1313
workflow_dispatch:
1414
inputs:
1515
denops_branch:
16-
description: 'Denops revision to test'
16+
description: "Denops revision to test"
1717
required: false
18-
default: 'main'
18+
default: "main"
1919
verbose:
2020
type: boolean
2121
required: false
22-
description: 'Enable verbose output'
22+
description: "Enable verbose output"
2323
default: false
2424

2525
defaults:
@@ -128,7 +128,10 @@ jobs:
128128
129129
- name: Perform pre-cache
130130
run: |
131-
deno cache ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/mod.ts ./mod.ts
131+
deno cache \
132+
--config ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/deno.jsonc \
133+
${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/mod.ts \
134+
./mod.ts
132135
133136
- name: Test
134137
run: deno task test:coverage

0 commit comments

Comments
 (0)