Skip to content

Commit

Permalink
Merge pull request #836 from remap-keys/use-frozen-lockfile
Browse files Browse the repository at this point in the history
Specify `--immutable` option for `yarn install` command to avoid generating the yarn.lock file
  • Loading branch information
yoichiro authored Jun 1, 2024
2 parents 0769b09 + 0563b9d commit a33f327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Build and Test
env:
REACT_APP_FIREBASE_API_KEY: ${{ secrets.REACT_APP_FIREBASE_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Build and Test
env:
REACT_APP_FIREBASE_API_KEY: ${{ secrets.REACT_APP_FIREBASE_API_KEY }}
Expand Down

0 comments on commit a33f327

Please sign in to comment.