We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc69f0b commit fffc759Copy full SHA for fffc759
2 files changed
.github/workflows/ci.yml
@@ -12,15 +12,6 @@ on:
12
workflow_dispatch:
13
14
jobs:
15
- test:
16
- runs-on: ubuntu-latest
17
- steps:
18
- - name: Setup JS
19
- uses: zotero-plugin-dev/workflows/setup-js@main
20
-
21
- - name: Test
22
- run: pnpm test
23
24
build:
25
runs-on: ubuntu-latest
26
steps:
@@ -38,6 +29,22 @@ jobs:
38
29
**/dist/
39
30
!**/node_modules
40
31
32
+ test:
33
+ needs:
34
+ - build
35
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - name: Setup JS
+ uses: zotero-plugin-dev/workflows/setup-js@main
+
+ - name: Restore Build Result
41
+ uses: actions/download-artifact@v7
42
+ with:
43
+ name: build-result
44
45
+ - name: Test
46
+ run: pnpm test
47
48
docs:
49
50
needs:
.vscode/settings.json
@@ -35,6 +35,7 @@
"json",
"jsonc",
"yaml",
+ "yml",
"toml",
"xml",
"gql",
0 commit comments