Skip to content

Commit 21af7e0

Browse files
author
Kadi Kraman
authored
Merge pull request #421 from FormidableLabs/chore/travis
setup travis
2 parents 2f3d7f6 + fd353de commit 21af7e0

File tree

2 files changed

+29
-31
lines changed

2 files changed

+29
-31
lines changed

.github/workflows/main.yml

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

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: Lint
24+
script:
25+
- yarn run lint
26+
27+
- stage: Test
28+
script:
29+
- yarn run test

0 commit comments

Comments
 (0)