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.
1 parent 43f4dca commit d6f7ebaCopy full SHA for d6f7eba
.github/workflows/ci.yml
@@ -1,12 +1,22 @@
1
-language : node_js
2
-node_js :
3
- - 14
4
-install:
5
- - npm install
6
-script:
7
- - npm run build
8
- - npm run lint
9
- - npm run test
10
-
11
- # Send coverage data to Coveralls
12
-after_script: npm run coverage
+name: Node.js CI
+
+on: [push]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Use Node.js
13
+ uses: actions/setup-node@v1
14
+ with:
15
+ node-version: '14.x'
16
+ - run: npm ci
17
+ - run: npm run lint
18
+ - run: npm run build
19
+ - run: npm run test
20
+ - after_script: npm run coverage
21
+ env:
22
+ CI: true
0 commit comments