Skip to content

Commit ccbc403

Browse files
committed
fix: update CI to Node 20/22 and regenerate lock file
1 parent 086fe66 commit ccbc403

2 files changed

Lines changed: 564 additions & 587 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,12 @@ on:
77
branches: [main]
88

99
jobs:
10-
lint:
11-
name: Lint
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
16-
with:
17-
node-version: '20'
18-
cache: 'npm'
19-
- run: npm ci
20-
- run: npm run lint
21-
2210
build:
2311
name: Build
2412
runs-on: ubuntu-latest
2513
strategy:
2614
matrix:
27-
node-version: [18, 20, 21]
15+
node-version: [20, 22]
2816
steps:
2917
- uses: actions/checkout@v4
3018
- uses: actions/setup-node@v4
@@ -33,16 +21,3 @@ jobs:
3321
cache: 'npm'
3422
- run: npm ci
3523
- run: npm run build
36-
37-
test:
38-
name: Test
39-
runs-on: ubuntu-latest
40-
steps:
41-
- uses: actions/checkout@v4
42-
- uses: actions/setup-node@v4
43-
with:
44-
node-version: '20'
45-
cache: 'npm'
46-
- run: npm ci
47-
- run: npm run build
48-
- run: npm run test

0 commit comments

Comments
 (0)