Skip to content

Commit

Permalink
fix: enhance pnpm install in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed May 22, 2022
1 parent 91bfeb0 commit 70f1aff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-app-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Set node environment variables
run: echo ${{ secrets.app_env }} | base64 --decode --ignore-garbage > .env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Run ESLint
run: pnpm lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Run ESLint
run: pnpm lint
Expand Down

0 comments on commit 70f1aff

Please sign in to comment.