Skip to content

Commit ccfed18

Browse files
committed
setup travis
1 parent 2f3d7f6 commit ccfed18

File tree

2 files changed

+33
-31
lines changed

2 files changed

+33
-31
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.travis.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
script:
29+
- yarn run lint
30+
31+
- stage: Test
32+
script:
33+
- yarn run test

0 commit comments

Comments
 (0)