We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0d6b33 + d954d4b commit 61d8e4bCopy full SHA for 61d8e4b
.github/.workflows/release.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ node: [10.x, 12.x]
14
15
+ steps:
16
+ - uses: actions/checkout@2
17
18
+ - name: Setup nodejs
19
+ uses: actions/setup-node@v2-beta
20
+ with:
21
+ node-version: ${{ matrix.node }}
22
+ - name: Install Deps
23
+ run: npm run install
24
+ - name: Validate package
25
+ run: npm run validate
26
27
+ release:
28
29
30
31
32
33
34
35
36
+ node-version: 12.x
37
+ - name: Update tests, coverage, and release
38
+ run: npm run test:update && npx codecov && npx semantic-release
.travis.yml
0 commit comments