Skip to content

Commit a2c28cd

Browse files
committed
chore: drop node < v20 from tests
1 parent cddfa2e commit a2c28cd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
name: Node.js CI
22
on:
33
push:
4-
branches: [ "master" ]
4+
branches: [ "main" ]
55
pull_request:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [14.x, 16.x, 18.x, latest]
11+
node-version: [20.x, latest]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Use Node.js ${{ matrix.node-version }}
1515
uses: actions/setup-node@v3
1616
with:
1717
node-version: ${{ matrix.node-version }}
18-
- run: npm install
18+
- run: npm run fmt
19+
- run: npm ci
1920
- run: npm test

0 commit comments

Comments
 (0)