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 aedb453 commit 59d9b95Copy full SHA for 59d9b95
.github/workflows/nodejs.yml
@@ -0,0 +1,27 @@
1
+name: Node.js CI
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ node-version: [14]
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ with:
12
+ fetch-depth: 0
13
+ - name: Use Node.js ${{ matrix.node-version }}
14
+ uses: actions/setup-node@v1
15
16
+ node-version: ${{ matrix.node-version }}
17
+ - run: npm install
18
+ - run: npx commitlint --from=HEAD~1
19
+ - run: npm run lint
20
+ - run: npm run lint:dts
21
+ - run: npm run test:ci
22
+ - run: npm run build
23
+ - run: npm run benchmark
24
+ - name: Coveralls
25
+ uses: coverallsapp/github-action@master
26
27
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments