Skip to content

Commit 9ca1cbc

Browse files
committed
chore(ci): add Node 20 to matrix
1 parent c7d2479 commit 9ca1cbc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
nodejs: [10, 12, 14, 16, 18]
11+
nodejs: [10, 12, 14, 16, 18, 20]
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
@@ -22,22 +22,22 @@ jobs:
2222
run: bun install
2323

2424
- name: (coverage) Install
25-
if: matrix.nodejs >= 18
25+
if: matrix.nodejs >= 20
2626
run: bun add -g c8
2727

2828
- name: Build
2929
run: bun run build
3030

3131
- name: Test
32-
if: matrix.nodejs < 18
32+
if: matrix.nodejs < 20
3333
run: npm test
3434

3535
- name: (coverage) Test
36-
if: matrix.nodejs >= 18
36+
if: matrix.nodejs >= 20
3737
run: c8 --include=packages npm test
3838

3939
- name: (coverage) Report
40-
if: matrix.nodejs >= 18
40+
if: matrix.nodejs >= 20
4141
run: |
4242
c8 report --reporter=text-lcov > coverage.lcov
4343
bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)