Skip to content

Commit

Permalink
Fix CI failure due to dependency resolution (#798)
Browse files Browse the repository at this point in the history
* Fix CI failure due to dependency resolution

eg. https://github.com/exercism/javascript-test-runner/actions/runs/8832917206/job/24251145340?pr=797

* Fix yarn install deprecation warning

The --frozen-lockfile option is deprecated; use --immutable and/or --immutable-cache instead
  • Loading branch information
tejasbubane authored May 3, 2024
1 parent a693c5f commit 46b3a51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 33 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
30 changes: 1 addition & 29 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2561,25 +2561,7 @@ __metadata:
languageName: node
linkType: hard

"@typescript-eslint/typescript-estree@npm:6.4.1":
version: 6.4.1
resolution: "@typescript-eslint/typescript-estree@npm:6.4.1"
dependencies:
"@typescript-eslint/types": 6.4.1
"@typescript-eslint/visitor-keys": 6.4.1
debug: ^4.3.4
globby: ^11.1.0
is-glob: ^4.0.3
semver: ^7.5.4
ts-api-utils: ^1.0.1
peerDependenciesMeta:
typescript:
optional: true
checksum: 34c289e50a6337321154efe6c20c762e94fea308f9032971e356a266f63e99b908b1a00dd8cf51eba50a6f69db01d665faf2cf13454b355767fd167eebe60f1c
languageName: node
linkType: hard

"@typescript-eslint/typescript-estree@npm:^6.4.1":
"@typescript-eslint/typescript-estree@npm:6.4.1, @typescript-eslint/typescript-estree@npm:^6.4.1":
version: 6.4.1
resolution: "@typescript-eslint/typescript-estree@npm:6.4.1"
dependencies:
Expand Down Expand Up @@ -2663,16 +2645,6 @@ __metadata:
languageName: node
linkType: hard

"@typescript-eslint/visitor-keys@npm:6.4.1":
version: 6.4.1
resolution: "@typescript-eslint/visitor-keys@npm:6.4.1"
dependencies:
"@typescript-eslint/types": 6.4.1
eslint-visitor-keys: ^3.4.1
checksum: bd9cd56fc793e1d880c24193f939c4992b2653f330baece41cd461d1fb48edb2c53696987cba0e29074bbb452dd181fd009db92dd19060fdcc417ad76768f18a
languageName: node
linkType: hard

"@typescript-eslint/visitor-keys@npm:^6.0.0":
version: 6.4.0
resolution: "@typescript-eslint/visitor-keys@npm:6.4.0"
Expand Down

0 comments on commit 46b3a51

Please sign in to comment.