Skip to content

Commit 46b3a51

Browse files
authored
Fix CI failure due to dependency resolution (#798)
* 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
1 parent a693c5f commit 46b3a51

File tree

3 files changed

+5
-33
lines changed

3 files changed

+5
-33
lines changed

.github/workflows/ci.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: 18.x
2020

2121
- name: Install project dependencies
22-
run: yarn install --frozen-lockfile
22+
run: yarn install --immutable
2323

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

4141
- name: Install project dependencies
42-
run: yarn install --frozen-lockfile
42+
run: yarn install --immutable
4343

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

.github/workflows/pr.ci.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: 18.x
2020

2121
- name: Install project dependencies
22-
run: yarn install --frozen-lockfile
22+
run: yarn install --immutable
2323

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

4343
- name: Install project dependencies
44-
run: yarn install --frozen-lockfile
44+
run: yarn install --immutable
4545

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

yarn.lock

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2561,25 +2561,7 @@ __metadata:
25612561
languageName: node
25622562
linkType: hard
25632563

2564-
"@typescript-eslint/typescript-estree@npm:6.4.1":
2565-
version: 6.4.1
2566-
resolution: "@typescript-eslint/typescript-estree@npm:6.4.1"
2567-
dependencies:
2568-
"@typescript-eslint/types": 6.4.1
2569-
"@typescript-eslint/visitor-keys": 6.4.1
2570-
debug: ^4.3.4
2571-
globby: ^11.1.0
2572-
is-glob: ^4.0.3
2573-
semver: ^7.5.4
2574-
ts-api-utils: ^1.0.1
2575-
peerDependenciesMeta:
2576-
typescript:
2577-
optional: true
2578-
checksum: 34c289e50a6337321154efe6c20c762e94fea308f9032971e356a266f63e99b908b1a00dd8cf51eba50a6f69db01d665faf2cf13454b355767fd167eebe60f1c
2579-
languageName: node
2580-
linkType: hard
2581-
2582-
"@typescript-eslint/typescript-estree@npm:^6.4.1":
2564+
"@typescript-eslint/typescript-estree@npm:6.4.1, @typescript-eslint/typescript-estree@npm:^6.4.1":
25832565
version: 6.4.1
25842566
resolution: "@typescript-eslint/typescript-estree@npm:6.4.1"
25852567
dependencies:
@@ -2663,16 +2645,6 @@ __metadata:
26632645
languageName: node
26642646
linkType: hard
26652647

2666-
"@typescript-eslint/visitor-keys@npm:6.4.1":
2667-
version: 6.4.1
2668-
resolution: "@typescript-eslint/visitor-keys@npm:6.4.1"
2669-
dependencies:
2670-
"@typescript-eslint/types": 6.4.1
2671-
eslint-visitor-keys: ^3.4.1
2672-
checksum: bd9cd56fc793e1d880c24193f939c4992b2653f330baece41cd461d1fb48edb2c53696987cba0e29074bbb452dd181fd009db92dd19060fdcc417ad76768f18a
2673-
languageName: node
2674-
linkType: hard
2675-
26762648
"@typescript-eslint/visitor-keys@npm:^6.0.0":
26772649
version: 6.4.0
26782650
resolution: "@typescript-eslint/visitor-keys@npm:6.4.0"

0 commit comments

Comments
 (0)