0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

chore(ci): fix test and functional test execution in same command

This commit is contained in:
Sergio Herrera Guzmán 2018-07-03 21:39:57 +02:00
parent 0116a2aa5c
commit 08006cccef
No known key found for this signature in database
GPG key ID: 7F71136C8A29910C

View file

@ -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