1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-21 07:29:37 +01:00

Merge pull request #802 from verdaccio/612-execute-tests-and-functest

chore(ci): fix test and functional test execution in same command
This commit is contained in:
Juan Picado @jotadeveloper 2018-07-04 00:14:09 +02:00 committed by GitHub
commit 2f2829cc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -109,8 +109,9 @@ jobs:
- *restore_repo
- run:
name: Test with Node 8
command: yarn test
command: yarn test:functional
command: |
yarn test
yarn test:functional
test_node9:
<<: *defaults
@ -119,8 +120,9 @@ jobs:
- *restore_repo
- run:
name: Test with Node 9
command: yarn test
command: yarn test:functional
command: |
yarn test
yarn test:functional
- save_cache:
key: *coverage_key
paths:
@ -133,8 +135,9 @@ jobs:
- *restore_repo
- run:
name: Test with Node 10
command: yarn run test
command: yarn test:functional
command: |
yarn run test
yarn test:functional
test_e2e:
<<: *defaults