File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Test
2
2
3
3
on :
4
- schedule :
5
- - cron : " 0 7 * * 0"
6
4
push :
7
5
branches :
8
6
- main
9
7
pull_request :
8
+ paths :
9
+ - " **.ts"
10
+ - " **.vim"
11
+ - " **.md"
12
+ - " deno.jsonc"
13
+ - " .github/workflows/test.yml"
10
14
workflow_dispatch :
11
15
12
16
defaults :
78
82
${DENOPS_TEST_NVIM} --version
79
83
env :
80
84
DENOPS_TEST_NVIM : ${{ steps.nvim.outputs.executable }}
85
+ - name : Perform pre-cache
86
+ run : deno cache ./denops/@denops-private/mod.ts
81
87
- name : Test
82
88
run : deno task test:coverage
83
89
env :
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Denops entry file to perform pre-cache from CLI.
3
+ *
4
+ * ```
5
+ * deno cache /path/to/denops.vim/denops/@denops-private/mod.ts
6
+ * ```
7
+ *
8
+ * @module
9
+ */
10
+ export * from "./cli.ts" ;
11
+ export * from "./worker.ts" ;
You can’t perform that action at this time.
0 commit comments