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 2f3d7f6 commit ccfed18Copy full SHA for ccfed18
.github/workflows/main.yml
.travis.yml
@@ -0,0 +1,33 @@
1
+notifications:
2
+ email: false
3
+
4
+branches:
5
+ only:
6
+ - master
7
+ - /^v\d+\.\d+\.\d+/
8
9
+language: node_js
10
+cache:
11
+ yarn: true
12
+node_js:
13
+ - '10'
14
15
+matrix:
16
+ fast_finish: true
17
18
+install:
19
+ - yarn install --frozen-lockfile --non-interactive
20
21
+jobs:
22
+ include:
23
+ - stage: Build
24
+ script:
25
+ - yarn run build
26
27
+ - stage: Lint
28
29
+ - yarn run lint
30
31
+ - stage: Test
32
33
+ - yarn run test
0 commit comments