Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -991,8 +991,6 @@ jobs:
- run: yarn lerna run build-prod --stream
# run unit tests from each individual package
- run: yarn test
# check for compile errors with the releaserc scripts
- run: yarn test-npm-package-release-script
- verify-mocha-results:
expectedResultCount: 9
- store_test_results:
Expand All @@ -1002,6 +1000,14 @@ jobs:
path: cli/test/html
- store-npm-logs

unit-tests-release:
<<: *defaults
resource_class: medium
parallelism: 1
steps:
- restore_cached_workspace
- run: yarn test-npm-package-release-script

lint-types:
<<: *defaults
parallelism: 1
Expand Down Expand Up @@ -1975,6 +1981,10 @@ linux-workflow: &linux-workflow
- unit-tests:
requires:
- build
- unit-tests-release:
context: test-runner:npm-release
requires:
- build
- server-unit-tests:
requires:
- build
Expand Down Expand Up @@ -2108,6 +2118,7 @@ linux-workflow: &linux-workflow
- server-integration-tests
- server-unit-tests
- unit-tests
- unit-tests-release
- cli-visual-tests

# various testing scenarios, like building full binary
Expand Down