File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -991,8 +991,6 @@ jobs:
991991 - run : yarn lerna run build-prod --stream
992992 # run unit tests from each individual package
993993 - run : yarn test
994- # check for compile errors with the releaserc scripts
995- - run : yarn test-npm-package-release-script
996994 - verify-mocha-results :
997995 expectedResultCount : 9
998996 - store_test_results :
@@ -1002,6 +1000,14 @@ jobs:
10021000 path : cli/test/html
10031001 - store-npm-logs
10041002
1003+ unit-tests-release :
1004+ << : *defaults
1005+ resource_class : medium
1006+ parallelism : 1
1007+ steps :
1008+ - restore_cached_workspace
1009+ - run : yarn test-npm-package-release-script
1010+
10051011 lint-types :
10061012 << : *defaults
10071013 parallelism : 1
@@ -1975,6 +1981,10 @@ linux-workflow: &linux-workflow
19751981 - unit-tests :
19761982 requires :
19771983 - build
1984+ - unit-tests-release :
1985+ context : test-runner:npm-release
1986+ requires :
1987+ - build
19781988 - server-unit-tests :
19791989 requires :
19801990 - build
@@ -2108,6 +2118,7 @@ linux-workflow: &linux-workflow
21082118 - server-integration-tests
21092119 - server-unit-tests
21102120 - unit-tests
2121+ - unit-tests-release
21112122 - cli-visual-tests
21122123
21132124 # various testing scenarios, like building full binary
You can’t perform that action at this time.
0 commit comments