Skip to content
This repository was archived by the owner on Apr 18, 2021. It is now read-only.

ci: migrate circle CI to travis CI #189

Merged
merged 1 commit into from
Jul 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .circleci/config.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: node_js
node_js:
- '11.12.0'

sudo: false

before_install:
- npm install -g ganache-cli
- npm run bootstrap
- rm packages/vvisp/package-lock.json
- rm packages/vvisp-utils/package-lock.json

before_deploy:
- cd $TRAVIS_BUILD_DIR

script: 'true'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"scripts": {
"lerna:bootstrap": "lerna bootstrap --hoist --no-ci",
"lerna:bootstrap": "lerna bootstrap --no-ci",
"bootstrap": "npm install && npm run lerna:bootstrap",
"test": "./scripts/test.sh",
"ci": "./scripts/ci.sh",
Expand Down