Skip to content

Commit

Permalink
fix: issue with workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
sirishgf committed Jan 2, 2024
1 parent 7f71419 commit e11349a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/node-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ jobs:

- name: Test with ava
id: unit-tests-step
run: find ./* -maxdepth 2 -name ava.config.js -print0 | xargs -n 1 -0 npx nyc ava
run: find ./* -maxdepth 2 -name ava.config.js -print0 | xargs --null -I {} npx nyc ava

- name: Upload test artifact
id: upload-test-artifact
uses: actions/upload-artifact@v4
name: my-artifact
path: coverage/lcov-report
retention-days: 14
with:
name: my-artifact
path: coverage/lcov-report
retention-days: 14

0 comments on commit e11349a

Please sign in to comment.