Skip to content

Commit cb78ed8

Browse files
committed
ci(actions): enable testing on node 14, 16, 18
re #55
1 parent 7a80745 commit cb78ed8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/npm-publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ env:
1818
jobs:
1919
build:
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
node: [ 14, 16, 18 ]
24+
name: Node ${{ matrix.node }} test
2125
steps:
2226
- uses: actions/checkout@v3
2327
- uses: actions/setup-node@v3
2428
with:
25-
node-version: 16
29+
node-version: ${{ matrix.node }}
2630
cache: 'npm'
2731
- run: npm ci
2832
- run: npm test

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)