Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
# for test cache hits
- run: npm i -g [email protected]

# don't accidentally use the global npx
- run: rm $(which npx) # /opt/hostedtoolcache/node/10.23.0/x64/bin/npx
- run: rm $(which npx) # /usr/local/bin/npx
# test that we can't find it
- run: '! which npx'

- run: npm ci
- run: npm run ${{ matrix.test-command }} -- --retries 1
timeout-minutes: 15
Expand Down