Skip to content

Commit 7fe2128

Browse files
authored
Update CI (clean-css#50)
* specify `fail-fast: false` * update to `actions/setup-node@v2` * fix indentation
1 parent 10c0229 commit 7fe2128

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/node.js.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ name: x86 Linux build
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [master]
99
pull_request:
10-
branches: [ master ]
10+
branches: [master]
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
strategy:
17+
fail-fast: false
1818
matrix:
1919
node-version: [10.x, 12.x, 14.x, 15.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
23-
- uses: actions/checkout@v2
24-
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v1
26-
with:
27-
node-version: ${{ matrix.node-version }}
28-
- run: npm ci
29-
- run: npm test
23+
- uses: actions/checkout@v2
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v2
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
- run: npm ci
29+
- run: npm test

0 commit comments

Comments
 (0)