ci: move Preact E2E tests on a Node 12 executor as the Preact CLI isn't compatible with Node 10 for a few weeks

Signed-off-by: Gaëtan Maisse <gaetanmaisse@gmail.com>
This commit is contained in:
Gaëtan Maisse 2021-01-08 18:25:39 +01:00
parent 8364d87855
commit d6f8bfbc49
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8

View File

@ -218,7 +218,7 @@ jobs:
root: .
paths:
- .verdaccio-cache
e2e-tests:
e2e-tests-node-10:
executor:
class: medium
name: sb_node_10_browsers
@ -257,7 +257,49 @@ jobs:
command: yarn cypress install
- run:
name: run e2e tests
command: yarn test:e2e-framework
command: yarn test:e2e-framework --skip preact
- store_artifacts:
path: /tmp/storybook/cypress
destination: cypress
e2e-tests-node-12:
executor:
class: medium
name: sb_node_12_browsers
working_directory: /tmp/storybook
steps:
- when:
condition:
and:
- not:
equal: [ master, << pipeline.git.branch >> ]
- not:
equal: [ next, << pipeline.git.branch >> ]
steps:
- ensure-pr-is-labeled-with:
label: "run e2e extended test suite"
- git-shallow-clone/checkout_advanced:
clone_options: '--depth 1 --verbose'
- attach_workspace:
at: .
- run:
name: Running local registry
command: yarn local-registry --port 6000 --open
background: true
- run:
name: Wait for registry
command: yarn wait-on http://localhost:6000
- run:
name: Set registry
command: yarn config set registry http://localhost:6000/
- run:
name: Test local registry
command: yarn info @storybook/core
- run:
name: Install Cypress binary
command: yarn cypress install
- run:
name: Run E2E tests
command: yarn test:e2e-framework preact
- store_artifacts:
path: /tmp/storybook/cypress
destination: cypress
@ -507,7 +549,10 @@ workflows:
requires:
- install-e2e-deps
- build
- e2e-tests:
- e2e-tests-node-10:
requires:
- publish
- e2e-tests-node-12:
requires:
- publish
- e2e-tests-yarn-2-pnp: