Skip to content

Commit 4061f36

Browse files
committed
Drop NodeJS 16 support
NodeJS 16 EOL was on September 11, 2023 (https://nodejs.org/en/blog/announcements/nodejs16-eol)
1 parent cec6be1 commit 4061f36

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,30 @@ on:
1010

1111
jobs:
1212
build:
13+
name: Build
1314
runs-on: ubuntu-latest
1415

1516
strategy:
1617
matrix:
17-
node-version: [16.x, 18.x]
18+
node-version: [18.x, 20.x]
1819

1920
steps:
20-
- uses: actions/checkout@v3
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
2124
- name: Setup Node.js ${{ matrix.node-version }}
2225
uses: actions/setup-node@v3
2326
with:
2427
node-version: ${{ matrix.node-version }}
28+
2529
- name: Install dependencies
2630
run: npm ci
31+
2732
- name: Run linters
2833
run: npm run lint:build
34+
2935
- name: Run tests
3036
run: npm run test:build
37+
3138
- name: Build package
3239
run: npm run dist

0 commit comments

Comments
 (0)