We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 476302d commit c43df2cCopy full SHA for c43df2c
.github/workflows/unit-test.yml
@@ -38,13 +38,14 @@ jobs:
38
if: steps.cache.outputs.cache-hit != 'true'
39
run: |
40
npm install --ignore-scripts
41
- chown -R 1001:121 "/github/home/.npm" # fix npm cache permissions for npm v7
+ chown -R 1001:121 "/github/home/.npm" || true # fix npm cache permissions for npm v7 if cache exists
42
npx lerna bootstrap --no-ci
43
npm run compile
44
45
- name: Install and Build (cache hit) 🔧
46
if: steps.cache.outputs.cache-hit == 'true'
47
48
+ chown -R 1001:121 "/github/home/.npm" # fix npm cache permissions for npm v7
49
npm ci --ignore-scripts
50
npx lerna bootstrap
51
0 commit comments