mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
chore: circle ci do not run func test on node 6
This commit is contained in:
parent
a1439df1b5
commit
d81d9eaa89
@ -102,7 +102,8 @@ jobs:
|
|||||||
- *restore_repo
|
- *restore_repo
|
||||||
- run:
|
- run:
|
||||||
name: Test with Node 8
|
name: Test with Node 8
|
||||||
command: yarn run test
|
command: yarn test
|
||||||
|
command: yarn test:func
|
||||||
|
|
||||||
test_node9:
|
test_node9:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
@ -111,7 +112,8 @@ jobs:
|
|||||||
- *restore_repo
|
- *restore_repo
|
||||||
- run:
|
- run:
|
||||||
name: Test with Node 9
|
name: Test with Node 9
|
||||||
command: yarn run test
|
command: yarn test
|
||||||
|
command: yarn test:func
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: *coverage_key
|
key: *coverage_key
|
||||||
paths:
|
paths:
|
||||||
@ -125,6 +127,7 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Test with Node 10
|
name: Test with Node 10
|
||||||
command: yarn run test
|
command: yarn run test
|
||||||
|
command: yarn test:func
|
||||||
|
|
||||||
test_e2e:
|
test_e2e:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
@ -154,11 +154,11 @@
|
|||||||
"prepublish": "in-publish && npm run build:webui && npm run code:build || not-in-publish",
|
"prepublish": "in-publish && npm run build:webui && npm run code:build || not-in-publish",
|
||||||
"flow": "flow",
|
"flow": "flow",
|
||||||
"pretest": "npm run code:build",
|
"pretest": "npm run code:build",
|
||||||
"test": "cross-env npm run test:unit && npm run test:func",
|
"test": "npm run test:unit",
|
||||||
"test:unit": "cross-env NODE_ENV=test BABEL_ENV=test TZ=UTC jest --config ./jest.config.unit.js",
|
"test:unit": "cross-env NODE_ENV=test BABEL_ENV=test TZ=UTC jest --config ./jest.config.unit.js",
|
||||||
"test:func": "cross-env NODE_ENV=testOldEnv jest --config ./test/jest.config.func.js --testPathPattern ./test/functional/index*",
|
"test:func": "cross-env NODE_ENV=testOldEnv jest --config ./test/jest.config.func.js --testPathPattern ./test/functional/index*",
|
||||||
"test:e2e": "cross-env BABEL_ENV=testOldEnv jest --config ./test/jest.config.e2e.js",
|
"test:e2e": "cross-env BABEL_ENV=testOldEnv jest --config ./test/jest.config.e2e.js",
|
||||||
"test:all": "npm run test && npm run test:e2e",
|
"test:all": "npm run test && npm run test:func && npm run test:e2e",
|
||||||
"pre:ci": "npm run lint && npm run build:webui",
|
"pre:ci": "npm run lint && npm run build:webui",
|
||||||
"commitmsg": "commitlint -e $GIT_PARAMS",
|
"commitmsg": "commitlint -e $GIT_PARAMS",
|
||||||
"coverage:publish": "codecov",
|
"coverage:publish": "codecov",
|
||||||
|
Loading…
Reference in New Issue
Block a user