Skip to content

Commit

Permalink
refactor(script): travis-ci scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
artyorsh authored Jun 6, 2019
1 parent a868b55 commit cafe153
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ matrix:
branches:
only:
- next
- fix/travis
before_install:
- openssl aes-256-cbc -K $encrypted_d1ce48b9cbe6_key -iv $encrypted_d1ce48b9cbe6_iv
-in travis_deploy_key.enc -out /tmp/travis_deploy_key -d
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
"lint": "npm run lint:src && npm run lint:pg",
"lint:src": "tslint -p ./src/framework/tsconfig.json --fix",
"lint:pg": "tslint -p ./src/playground/tsconfig.json --fix",
"ci:install": "npm i && npm run install:pg",
"ci:install": "npm ci && npm run ci:install:pg",
"ci:install:pg": "( cd ./src/playground && npm ci )",
"ci:lint": "npm run lint",
"ci:build": "npm run build:src && npm run build:pg",
"ci:test": "npm t -- --coverage && cat ./dist/jest/coverage/lcov.info | coveralls",
"ci:test": "npm t -- --ci --coverage && cat ./dist/jest/coverage/lcov.info | coveralls",
"install:pg": "( cd ./src/playground && npm i )",
"publish": "./scripts/publish/publish.sh",
"release:prepare": "npm run clean && npm run build",
Expand Down

0 comments on commit cafe153

Please sign in to comment.