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: Adjust Playwright image to stable release #598

Merged
merged 1 commit into from
Nov 20, 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 @@ -71,7 +71,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
jobs:
- job: Playwright
displayName: "Run Playwright"
container: mcr.microsoft.com/playwright:v1.48.1-jammy
container: mcr.microsoft.com/playwright:v1.49.0-jammy
steps:
- checkout: self
displayName: "Get Full Git History"
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 @@ -57,7 +57,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
steps:
- step:
name: "Playwright"
image: mcr.microsoft.com/playwright:v1.48.1-jammy
image: mcr.microsoft.com/playwright:v1.49.0-jammy
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 @@ -59,7 +59,7 @@ To integrate Chromatic with your existing workflow, you'll need to add the follo
executors:
pw-jammy-development:
docker:
- image: mcr.microsoft.com/playwright:v1.48.1-jammy
- image: mcr.microsoft.com/playwright:v1.49.0-jammy
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 @@ -42,7 +42,7 @@ To integrate Chromatic with your existing CI provider, you'll need to add the fo
- run:
name: "Playwright"
displayName: "Run Playwright tests"
container: mcr.microsoft.com/playwright:v1.48.1-jammy
container: mcr.microsoft.com/playwright:v1.49.0-jammy
options:
artifacts:
# Chromatic automatically defaults to the test-results directory.
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 @@ -56,7 +56,7 @@ In your `.github/workflows` directory, create a new file called `chromatic.yml`
playwright:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.48.1-jammy
image: mcr.microsoft.com/playwright:v1.49.0-jammy
steps:
- uses: actions/checkout@v4
with:
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 @@ -59,7 +59,7 @@ To integrate Chromatic with your existing pipeline, you'll need to add the follo
Playwright:
stage: UI_Tests
needs: []
image: mcr.microsoft.com/playwright:v1.48.1-jammy
image: mcr.microsoft.com/playwright:v1.49.0-jammy
script:
- npx playwright test
allow_failure: true
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 @@ -51,7 +51,7 @@ To integrate Chromatic with your existing [multistage pipeline](https://www.jenk
stage('Playwright') {
agent {
docker {
image 'mcr.microsoft.com/playwright:v1.48.1-jammy'
image 'mcr.microsoft.com/playwright:v1.49.0-jammy'
reuseNode true
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/content/playwright/sharding.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
shard: [1, 2]
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.48.1-jammy
image: mcr.microsoft.com/playwright:v1.49.0-jammy
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -97,7 +97,7 @@ before_script:
Playwright:
stage: UI_Tests
needs: []
image: mcr.microsoft.com/playwright:v1.48.1-jammy
image: mcr.microsoft.com/playwright:v1.49.0-jammy
parallel: 2
script:
- npx playwright test --shard=$CI_NODE_INDEX/$CI_NODE_TOTAL
Expand All @@ -123,7 +123,7 @@ version: 2.1
executors:
pw-jammy-development:
docker:
- image: mcr.microsoft.com/playwright:v1.48.1-jammy
- image: mcr.microsoft.com/playwright:v1.49.0-jammy
chromatic-ui-testing:
docker:
- image: cimg/node:20.12.2
Expand Down Expand Up @@ -203,7 +203,7 @@ pipeline {
stage('Shard #1') {
agent {
docker {
image 'mcr.microsoft.com/playwright:v1.48.1-jammy'
image 'mcr.microsoft.com/playwright:v1.49.0-jammy'
reuseNode true
}
}
Expand All @@ -223,7 +223,7 @@ pipeline {
stage('Shard #2') {
agent {
docker {
image 'mcr.microsoft.com/playwright:v1.48.1-jammy'
image 'mcr.microsoft.com/playwright:v1.49.0-jammy'
reuseNode true
}
}
Expand Down Expand Up @@ -264,7 +264,7 @@ image: node:iron
- run:
name: "Playwright"
displayName: "Run Playwright tests"
container: mcr.microsoft.com/playwright:v1.48.1-jammy
container: mcr.microsoft.com/playwright:v1.49.0-jammy
options:
parallel: 2
artifacts:
Expand Down
Loading