Skip to content
This repository has been archived by the owner on Jun 17, 2021. It is now read-only.

Commit

Permalink
Improve CI setup - Test step (#372)
Browse files Browse the repository at this point in the history
* renamed test scripts & removed additional test run
  • Loading branch information
AWolf81 authored and superhawk610 committed Mar 28, 2019
1 parent 6e08471 commit 1316c9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ jobs:
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: yarn test

# report coverage
- run: yarn report-coverage
- run: yarn test:report-coverage

# Flowjs check
- run: yarn flow
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"publish:all": "yarn dist:all --publish always",
"test": "node scripts/test.js --maxWorkers=2 --env=node",
"test:dev": "yarn test --verbose=false",
"coverage": "yarn test --coverage",
"report-coverage": "yarn coverage && codecov",
"test:coverage": "yarn test --coverage",
"test:report-coverage": "yarn test:coverage && codecov",
"flow": "flow",
"lint": "eslint src/**/*.js src/**/*.snap config/**/*.js",
"prettier": "prettier --write",
Expand Down

0 comments on commit 1316c9a

Please sign in to comment.