Skip to content

Commit 17c0698

Browse files
committed
Fixes
1 parent 77f49b5 commit 17c0698

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/development.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
uses: actions/setup-node@v4
5454
with:
5555
node-version: ${{ matrix.node }}
56-
cache: npm
5756

5857
- name: 📥 Download deps
5958
run: npm ci
@@ -65,23 +64,23 @@ jobs:
6564
run: git diff --exit-code
6665

6766
- name: Run tests
68-
if: matrix.node != '18' || matrix.os != 'ubuntu-latest'
67+
if: matrix.os != 'ubuntu-latest'
6968
uses: nick-invision/retry@v3
7069
with:
7170
timeout_minutes: 20
7271
max_attempts: 3
7372
command: npm run test
7473

7574
- name: Run coverage
76-
if: matrix.node == '18' && matrix.os == 'ubuntu-latest'
75+
if: matrix.node == '20' && matrix.os == 'ubuntu-latest'
7776
uses: nick-invision/retry@v3
7877
with:
7978
timeout_minutes: 20
8079
max_attempts: 3
8180
command: npm run test:coverage
8281

8382
- name: ⬆️ Upload coverage to Codecov
84-
if: matrix.node == '18' && matrix.os == 'ubuntu-latest'
83+
if: matrix.node == '20' && matrix.os == 'ubuntu-latest'
8584
uses: codecov/codecov-action@v5
8685
with:
8786
files: ./coverage/coverage-final.json

.github/workflows/production.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,23 @@ jobs:
6565
run: git diff --exit-code
6666

6767
- name: Run tests
68-
if: matrix.node != '18' || matrix.os != 'ubuntu-latest'
68+
if: matrix.os != 'ubuntu-latest'
6969
uses: nick-invision/retry@v3
7070
with:
7171
timeout_minutes: 20
7272
max_attempts: 3
7373
command: npm run test
7474

7575
- name: Run coverage
76-
if: matrix.node == '18' && matrix.os == 'ubuntu-latest'
76+
if: matrix.node == '20' && matrix.os == 'ubuntu-latest'
7777
uses: nick-invision/retry@v3
7878
with:
7979
timeout_minutes: 20
8080
max_attempts: 3
8181
command: npm run test:coverage
8282

8383
- name: ⬆️ Upload coverage to Codecov
84-
if: matrix.node == '18' && matrix.os == 'ubuntu-latest'
84+
if: matrix.node == '20' && matrix.os == 'ubuntu-latest'
8585
uses: codecov/codecov-action@v5
8686
with:
8787
files: ./coverage/coverage-final.json

0 commit comments

Comments
 (0)