Skip to content

Commit

Permalink
Merge pull request #598 from chromaui/docs_playwright_adjust_image_tag
Browse files Browse the repository at this point in the history
Docs: Adjust Playwright image to stable release
  • Loading branch information
winkerVSbecks authored Nov 20, 2024
2 parents 5aafcba + 2188d7c commit e3532d2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
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

0 comments on commit e3532d2

Please sign in to comment.