We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3175779 commit f37d90bCopy full SHA for f37d90b
.github/workflows/ci.yml
@@ -53,6 +53,12 @@ jobs:
53
# for test cache hits
54
- run: npm i -g [email protected]
55
56
+ # don't accidentally use the global npx
57
+ - run: rm $(which npx) # /opt/hostedtoolcache/node/10.23.0/x64/bin/npx
58
+ - run: rm $(which npx) # /usr/local/bin/npx
59
+ # test that we can't find it
60
+ - run: '! which npx'
61
+
62
- run: npm ci
63
- run: npm run ${{ matrix.test-command }} -- --retries 1
64
timeout-minutes: 15
0 commit comments