Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Updates Cypress images to stable version #594

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/content/ci/azure-pipelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
jobs:
- job: Cypress
displayName: "Run Cypress"
container: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
container: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
variables:
npm_config_cache: $(Pipeline.Workspace)/.npm
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/bitbucket-pipelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
- step:
name: "Cypress"
# Configure the ELECTRON_EXTRA_LAUNCH_ARGS environment variable in your project settings to run Cypress tests with Chromatic.
image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
caches:
- npm
- node
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/circleci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ To integrate Chromatic with your existing workflow, you'll need to add the follo
executors:
cypress:
docker:
- image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
- image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
working_directory: ~/repo
chromatic-ui-testing:
docker:
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/custom-ci-provider.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ To integrate Chromatic with your existing CI provider, you'll need to add the fo
- run:
name: "Cypress"
displayName: "Run Cypress tests"
container: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
container: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
environment:
ELECTRON_EXTRA_LAUNCH_ARGS: "--remote-debugging-port=9222"
options:
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ In your `.github/workflows` directory, create a new file called `chromatic.yml`
name: Run Cypress
runs-on: ubuntu-latest
container:
image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
options: --user 1001
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/gitlab.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
Cypress:
stage: UI_Tests
needs: []
image: cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1
image: cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1
variables:
ELECTRON_EXTRA_LAUNCH_ARGS: "--remote-debugging-port=9222"
script:
Expand Down
2 changes: 1 addition & 1 deletion src/content/ci/jenkins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ To integrate Chromatic with your existing [multistage pipeline](https://www.jenk
stage('Cypress') {
agent {
docker {
image 'cypress/browsers:node-20.17.0-chrome-128.0.6613.119-1-ff-130.0-edge-128.0.2739.63-1'
image 'cypress/browsers:node-20.18.0-chrome-130.0.6723.69-1-ff-131.0.3-edge-130.0.2849.52-1'
reuseNode true
}
}
Expand Down
Loading