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 99e0481 commit e27fe8bCopy full SHA for e27fe8b
.github/workflows/deploy.yml
@@ -20,6 +20,11 @@ jobs:
20
- run: npm ci
21
- run: npm run build --if-present
22
- run: npm test
23
+ - uses: actions/upload-artifact@v4 # upload test results
24
+ if: success() || failure() # run this step even if previous step failed
25
+ with:
26
+ name: test-results
27
+ path: junit-report.xml
28
- name: Upload coverage reports to Codecov
29
uses: codecov/codecov-action@v4.0.1
30
with:
0 commit comments