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 179f5ee commit 007d03aCopy full SHA for 007d03a
.github/workflows/ci.yml
@@ -42,6 +42,10 @@ jobs:
42
node-version-file: package.json
43
cache: npm
44
cache-dependency-path: package-lock.json
45
+ - name: Clean up
46
+ run: |
47
+ rm -rf node_modules package-lock.json
48
+ npm cache clean --force
49
- name: Install node modules
50
run: npm ci --no-audit --no-fund --progress=false
51
- name: Presubmit check (e.g. lint, format)
.github/workflows/release.yml
@@ -32,6 +32,10 @@ jobs:
32
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
33
with:
34
node-version: 20
35
36
37
+ rm -rf node_modules package-lock.json || true
38
+ npm cache clean --force || true
39
- run: npm ci
40
- name: add macos cert
41
if: contains(matrix.os.name, 'macos')
0 commit comments