Skip to content

Commit

Permalink
Fix yarn install deprecation warning
Browse files Browse the repository at this point in the history
The --frozen-lockfile option is deprecated; use --immutable and/or --immutable-cache instead
  • Loading branch information
tejasbubane committed May 3, 2024
1 parent cac378e commit de6faad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18.x

- name: Install project dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Run exercism/javascript-test-runner ci precheck (lint code)
run: bin/lint.sh
Expand All @@ -39,7 +39,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install project dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Build the test-runner (using Node ${{ matrix.node-version }})
run: bin/test.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18.x

- name: Install project dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Run exercism/javascript ci precheck (lint code)
run: bin/lint.sh
Expand All @@ -41,7 +41,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install project dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Build the test-runner (using Node ${{ matrix.node-version }})
run: bin/test.sh
Expand Down

0 comments on commit de6faad

Please sign in to comment.