Skip to content

Commit bda10ac

Browse files
authored
Merge pull request #25 from reclaimprotocol/error-messages-reformatted
updated ci/cd workflow
2 parents 49e2b07 + 762be93 commit bda10ac

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/run-test-build-deploy.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,17 @@ jobs:
4343
run: npm run build
4444

4545
- name: Upload build artifacts
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: dist
4949
path: dist/
5050

51+
- name: Upload coverage report
52+
uses: actions/upload-artifact@v4
53+
with:
54+
name: coverage-report
55+
path: coverage/
56+
5157
publish:
5258
needs: test_and_build
5359
runs-on: ubuntu-latest
@@ -64,11 +70,17 @@ jobs:
6470
registry-url: "https://registry.npmjs.org"
6571

6672
- name: Download build artifacts
67-
uses: actions/download-artifact@v3
73+
uses: actions/download-artifact@v4
6874
with:
6975
name: dist
7076
path: dist/
7177

78+
- name: Download coverage report
79+
uses: actions/download-artifact@v4
80+
with:
81+
name: coverage-report
82+
path: coverage/
83+
7284
- name: Configure Git
7385
run: |
7486
git config user.name "${{ github.actor }}"

0 commit comments

Comments
 (0)