Skip to content

Commit 5417ad7

Browse files
committed
ci: fix e2e
1 parent 0b06b58 commit 5417ad7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/checks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
- run: npm ci
2323
- run: npm run build
2424

25+
- name: Upload build artifacts
26+
uses: actions/upload-artifact@v2
27+
with:
28+
name: build-artifacts
29+
path: dist/
30+
2531
test:
2632
name: Test
2733
runs-on: ubuntu-latest
@@ -43,6 +49,12 @@ jobs:
4349
steps:
4450
- uses: actions/checkout@v4
4551

52+
- name: Download build artifacts
53+
uses: actions/download-artifact@v2
54+
with:
55+
name: build-artifacts
56+
path: dist/
57+
4658
- name: Use Node.js 20.x
4759
uses: actions/setup-node@v3
4860
with:

0 commit comments

Comments
 (0)