Skip to content

Commit

Permalink
chore: Change NPM's default directory
Browse files Browse the repository at this point in the history
  • Loading branch information
helpermethod committed Apr 10, 2024
1 parent 2051565 commit 061656c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ jobs:
uses: reviewdog/[email protected]
- name: Run static analysis
uses: reviewdog/[email protected]
- name: Set up bats
run: sudo npm install -g [email protected]
- name: Run tests
run: bats --report-formatter junit . completion/bash
run: |
# workaround for https://github.com/actions/runner-images/issues/9644
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
npm install -g [email protected]
bats --report-formatter junit . completion/bash
- name: Create test report
uses: dorny/[email protected]
if: always()
Expand Down

0 comments on commit 061656c

Please sign in to comment.