We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9c0e5 commit 1568bfbCopy full SHA for 1568bfb
1 file changed
.github/workflows/nodejs.yml
@@ -17,15 +17,18 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
- node: [12, 14, 16]
+ node: [12, 14, 16, 18]
21
22
steps:
23
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
24
25
- - uses: actions/setup-node@v2
+ - uses: actions/setup-node@v3
26
with:
27
node-version: ${{ matrix.node }}
28
29
+ - name: Install latest npm
30
+ run: npm install --location=global npm@latest
31
+
32
- run: npm ci
33
34
- name: Lint and Test
0 commit comments