Skip to content

Commit

Permalink
Merge pull request #123 from kiwigrid/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/upload-artifact-4

chore(deps): bump actions/upload-artifact from 3 to 4
  • Loading branch information
jekkel authored Feb 7, 2024
2 parents 6cc93c9 + 5569522 commit b28d981
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
Expand All @@ -34,7 +34,7 @@ jobs:
- run: npm ci
- run: npm test
- name: Upload code coverage for ref branch
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: ref-lcov
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- uses: romeovs/[email protected]
with:
lcov-file: "test-results/coverage/lcov.info"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: test-results
- uses: dorny/test-reporter@v1
with:
artifact: test-results
name: Mocha Tests
path: 'test-results.json'
reporter: mocha-json

0 comments on commit b28d981

Please sign in to comment.