Skip to content

Commit

Permalink
fix: minor issue with playwright version (#2341)
Browse files Browse the repository at this point in the history
fix: issue with missing dependency for generating new component
  • Loading branch information
nmerget authored Mar 18, 2024
1 parent ea79111 commit 35b0c4b
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 309 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/update-playwright.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Replace from 'replace-in-file';
import packageJson from '../../package.json' assert { type: 'json' };

const oldPlaywrightVersion = 'v1.42.0';
const oldPlaywrightVersion = 'v1.42.1';

const updatePlaywright = () => {
const version = packageJson.devDependencies['@playwright/test'];
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-e2e-foundations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: 🧪🎭 - foundations
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.42.0
image: mcr.microsoft.com/playwright:v1.42.1
steps:
- name: ⏬ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-e2e-showcases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: 🧪🎭 - ${{ matrix.framework }}:${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.42.0
image: mcr.microsoft.com/playwright:v1.42.1
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: 🧪🎭 - ${{ matrix.framework }}:${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.42.0
image: mcr.microsoft.com/playwright:v1.42.1
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion e2e/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/playwright:v1.42.0 as playwright
FROM mcr.microsoft.com/playwright:v1.42.1 as playwright

COPY e2e /e2e
WORKDIR /e2e
Expand Down
Loading

0 comments on commit 35b0c4b

Please sign in to comment.