Skip to content

Commit a018c7b

Browse files
committed
CI configuration file fixed
1 parent 8b3af6a commit a018c7b

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/ci.yaml

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
name: CI
1+
name: Node.js CI
22

3-
on: [push]
3+
on: [push]
44

5-
jobs:
6-
build:
5+
jobs:
6+
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-latest
99

10-
strategy:
11-
matrix:
12-
node-version: [10.x, 12.x, 14.x, 15.x]
10+
strategy:
11+
matrix:
12+
node-version: [10.x, 12.x, 14.x, 15.x]
1313

14-
steps:
15-
- uses: actions/checkout@v2
16-
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
18-
with:
19-
node-version: ${{ matrix.node-version }}
20-
- run: npm install
21-
- run: npm run build
22-
- run: npm test
23-
- run: npm run lint
24-
env:
25-
CI: true
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm run build
22+
- run: npm test
23+
- run: npm run lint
24+
env:
25+
CI: true

0 commit comments

Comments
 (0)