Skip to content

Commit

Permalink
fix: use yarn install --immutable instead of --frozen-lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
a01sa01to committed Feb 29, 2024
1 parent 4b45c01 commit 369cc05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Test
run: yarn test

Expand All @@ -35,7 +35,7 @@ jobs:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Build
run: yarn build

Expand All @@ -51,7 +51,7 @@ jobs:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
Expand Down

0 comments on commit 369cc05

Please sign in to comment.