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 7bf0d03 commit 2135933Copy full SHA for 2135933
.github/workflows/sharded-vitest.yml
@@ -24,8 +24,11 @@ jobs:
24
with:
25
node-version: "20"
26
27
- - name: Install dependencies
28
- run: npm ci
+ - name: Clear npm cache and install dependencies
+ run: |
29
+ npm cache clean --force
30
+ rm -rf node_modules package-lock.json
31
+ npm install
32
33
- name: Run Vitest Tests (Shard ${{ matrix.shard }}/${{ matrix.total-shards }})
34
working-directory: ./packages/vitest-sharded
0 commit comments