Skip to content

Commit

Permalink
Polish circle config for mobx4 (#2000)
Browse files Browse the repository at this point in the history
  • Loading branch information
pustovalov authored and FredyC committed Jun 12, 2019
1 parent dcc315c commit 42c5dfd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Expand Up @@ -84,6 +84,14 @@ jobs:

- run: yarn test:webpack

test-es5:
executor: my-executor
steps:
- attach_workspace:
at: .

- run: yarn test:es5

test-size:
executor: my-executor
steps:
Expand Down Expand Up @@ -129,6 +137,9 @@ workflows:
- test-webpack:
requires:
- build
- test-es5:
requires:
- build
- test-size:
requires:
- build
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -21,8 +21,8 @@
"test:webpack": "node scripts/webpack-regression-tests.js",
"test:flow": "node_modules/.bin/flow check",
"test:performance": "npm run small-build && PERSIST=true time node --expose-gc test/perf/index.js",
"test:ci": "yarn test:all && yarn test:performance && yarn test -i --coverage && yarn test:webpack && yarn size",
"test:es5": "yarn small-build && es-check es5 lib/mobx.js",
"test:ci": "yarn test:all && yarn test:performance && yarn test -i --coverage && test:es5 && yarn test:webpack && yarn size",
"test:es5": "yarn es-check es5 lib/mobx.js",
"prettier": "prettier \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\"",
"_prepublish": "yarn small-build",
"quick-build": "tsc --pretty",
Expand Down

0 comments on commit 42c5dfd

Please sign in to comment.