We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a80745 commit cb78ed8Copy full SHA for cb78ed8
.github/workflows/npm-publish.yml
@@ -18,11 +18,15 @@ env:
18
jobs:
19
build:
20
runs-on: ubuntu-latest
21
+ strategy:
22
+ matrix:
23
+ node: [ 14, 16, 18 ]
24
+ name: Node ${{ matrix.node }} test
25
steps:
26
- uses: actions/checkout@v3
27
- uses: actions/setup-node@v3
28
with:
- node-version: 16
29
+ node-version: ${{ matrix.node }}
30
cache: 'npm'
31
- run: npm ci
32
- run: npm test
.nvmrc
0 commit comments