Skip to content

Commit e383d5d

Browse files
committed
Drop Node 18 from CI matrix and reorder steps
Remove Node 18 (EOL) from the test matrix. Run lint before build so fast-failing checks run first.
1 parent eb1c324 commit e383d5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [18, 20, 22]
14+
node-version: [20, 22]
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -25,8 +25,8 @@ jobs:
2525

2626
- run: pnpm install --frozen-lockfile
2727

28-
- run: pnpm build
28+
- run: pnpm lint
2929

3030
- run: pnpm test
3131

32-
- run: pnpm lint
32+
- run: pnpm build

0 commit comments

Comments
 (0)