-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate back to using Travis CI. * Remove GitHub Actions. * Add build step before test. * Remove Node 8 and 12 from matrix. * Replace GitHub Actions badge with Travis badge.
- Loading branch information
1 parent
5172fd4
commit d1763aa
Showing
3 changed files
with
30 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
notifications: | ||
email: false | ||
|
||
language: node_js | ||
cache: | ||
yarn: true | ||
node_js: | ||
- "10" | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
install: | ||
- yarn install --frozen-lockfile --non-interactive | ||
|
||
jobs: | ||
include: | ||
- stage: Build | ||
script: | ||
- yarn build | ||
- stage: Test | ||
script: | ||
- yarn build | ||
- yarn test | ||
- stage: Build Examples | ||
script: | ||
- yarn build | ||
- cd $TRAVIS_BUILD_DIR/examples | ||
- for dir in $TRAVIS_BUILD_DIR/examples/*; do (cd "$dir"; yarn; yarn clean; yarn build; cd ../); done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters