Skip to content

Commit c981b6f

Browse files
authored
Fix node build action, use only node 12.x
1 parent 446fe96 commit c981b6f

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,15 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [10.x, 12.x]
19+
node-version: [12.x]
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Use Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v1
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
- run: npm ci
28-
- run: npm run build --if-present
29-
- run: npm test
27+
- run: npm install
28+
- run: npm run build
3029
env:
3130
CI: true

0 commit comments

Comments
 (0)