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 2dfa735 commit c3998beCopy full SHA for c3998be
.github/workflows/nodejs.yml
@@ -0,0 +1,37 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Use Node.js 10
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: 10
17
+ - run: npm ci
18
+ - run: npm run test:prod
19
+ - run: npm run build
20
+ env:
21
+ CI: true
22
23
+ publish:
24
+ needs: test
25
26
27
28
+ - uses: actions/setup-node@v1
29
30
31
+ registry-url: https://registry.npmjs.org/
32
33
+ - run: npm run deploy-docs
34
+ - run: npm run semantic-release
35
36
37
+ NPM_TOKEN: ${{secrets.NPM_TOKEN}}
.travis.yml
0 commit comments