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 0b06b58 commit 5417ad7Copy full SHA for 5417ad7
.github/workflows/checks.yml
@@ -22,6 +22,12 @@ jobs:
22
- run: npm ci
23
- run: npm run build
24
25
+ - name: Upload build artifacts
26
+ uses: actions/upload-artifact@v2
27
+ with:
28
+ name: build-artifacts
29
+ path: dist/
30
+
31
test:
32
name: Test
33
runs-on: ubuntu-latest
@@ -43,6 +49,12 @@ jobs:
43
49
steps:
44
50
- uses: actions/checkout@v4
45
51
52
+ - name: Download build artifacts
53
+ uses: actions/download-artifact@v2
54
55
56
57
46
58
- name: Use Node.js 20.x
47
59
uses: actions/setup-node@v3
48
60
with:
0 commit comments