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.
2 parents 4747262 + c68912c commit c7c541aCopy full SHA for c7c541a
.github/workflows/node.js.yml
@@ -11,20 +11,13 @@ on:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
17
- strategy:
18
- matrix:
19
- node-version: [12.x, 14.x, 16.x]
20
- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
22
steps:
23
- - uses: actions/checkout@v2
24
- - name: Use Node.js ${{ matrix.node-version }}
25
- uses: actions/setup-node@v2
+ - uses: actions/checkout@v4
+ - name: Use Node.js 14.x
+ uses: actions/setup-node@v4
26
with:
27
- node-version: ${{ matrix.node-version }}
+ node-version: 14.x
28
cache: 'npm'
29
- run: npm ci
30
- - run: npm run build --if-present
+ - run: npm run test
0 commit comments