We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cbbfb commit f32b7a2Copy full SHA for f32b7a2
1 file changed
.github/workflows/build.yml
@@ -10,16 +10,13 @@ jobs:
10
build:
11
runs-on: ubuntu-latest
12
13
- strategy:
14
- matrix:
15
- node-version: [15.x, 16.x]
16
-
17
steps:
18
- - uses: actions/checkout@v2
19
- - name: Use Node.js ${{ matrix.node-version }}
20
- uses: actions/setup-node@v1
+ - uses: actions/checkout@v4
+ - name: Use Node.js 18.19.0
+ uses: actions/setup-node@v4
21
with:
22
- node-version: ${{ matrix.node-version }}
+ node-version: 18.19.0
+ cache: npm
23
- run: npm ci
24
- run: npm run build
25
env:
0 commit comments