We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75aad0a commit 430d173Copy full SHA for 430d173
.github/workflows/ci.yml
@@ -13,14 +13,16 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- node-version: [^12.22, ^14.17, ^16.4, ^17]
+ node-version: [^14.19, ^16.15, ^18]
17
os: [ubuntu-latest, windows-latest]
18
steps:
19
- - uses: actions/checkout@v2
20
- - uses: actions/setup-node@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
21
with:
22
node-version: ${{ matrix.node-version }}
23
- - run: npm install --global npm@8
+ - name: Install npm@8 for Node.js 14
24
+ if: matrix.node-version == '^14.19'
25
+ run: npm install --global npm@^8
26
- run: npm install --no-audit
27
- run: npm test
28
- uses: codecov/codecov-action@v2
0 commit comments