We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 446fe96 commit c981b6fCopy full SHA for c981b6f
1 file changed
.github/workflows/nodejs.yml
@@ -16,16 +16,15 @@ jobs:
16
17
strategy:
18
matrix:
19
- node-version: [10.x, 12.x]
+ node-version: [12.x]
20
21
steps:
22
- uses: actions/checkout@v2
23
- name: Use Node.js ${{ matrix.node-version }}
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm ci
28
- - run: npm run build --if-present
29
- - run: npm test
+ - run: npm install
+ - run: npm run build
30
env:
31
CI: true
0 commit comments