Skip to content

Commit

Permalink
build: fix npm cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Jul 22, 2021
1 parent 6964510 commit b1db002
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- name: Lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- run: 'echo "$PROVISION_PROFILE" | base64 --decode > embedded.provisionprofile'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-to-snap-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-update-web-app-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- name: Lint
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- name: Lint
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- run: 'echo "$PROVISION_PROFILE" | base64 --decode > embedded.provisionprofile'
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
${{ runner.os }}-node-
- name: Install npm Packages
if: steps.npm-cache.outputs.cache-hit != 'true'
# if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm i

- run: npm run lint
Expand Down

0 comments on commit b1db002

Please sign in to comment.