Skip to content

Commit

Permalink
Replace yarn dlx with npx
Browse files Browse the repository at this point in the history
  • Loading branch information
ranisalt committed Dec 9, 2023
1 parent 55c4d5a commit 88fd680
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:

- name: Run tests with coverage
if: matrix.node-version >= 20
env:
NODE_V8_COVERAGE: coverage/tmp
run: yarn test-coverage

- name: Generate coverage
if: matrix.node-version >= 20 && matrix.os == 'ubuntu-20.04'
env:
NODE_V8_COVERAGE: coverage/tmp
run: |
sudo apt install lcov
yarn dlx c8 report --reporter=text-lcov > lcov-js.info
npx c8 report --reporter=text-lcov > lcov-js.info
lcov -c -d . --no-external -o lcov-cpp.info
lcov -r lcov-cpp.info "*/node_modules/*" -o lcov-cpp.info
Expand Down

0 comments on commit 88fd680

Please sign in to comment.