Skip to content

Commit 53ff8b7

Browse files
committed
chore: update playwright docker image
1 parent 38db2da commit 53ff8b7

File tree

127 files changed

+9
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+9
-8
lines changed

.github/workflows/playwright.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ jobs:
88
name: Test component
99
runs-on: ubuntu-latest
1010
container:
11-
image: mcr.microsoft.com/playwright:v1.45.3-jammy
11+
image: mcr.microsoft.com/playwright:v1.49.0-jammy
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 18
16+
node-version: 20
17+
cache: npm
1718
- name: Install dependencies
1819
run: npm ci
1920
- name: Run Playwright tests

.github/workflows/pr-storybook-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
name: Tests
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 18
14+
node-version: 20
1515
- name: Install dependencies
1616
run: npm ci
1717
- name: Install Playwright Browsers

scripts/playwright-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44

55
IMAGE_NAME="mcr.microsoft.com/playwright"
6-
IMAGE_TAG="v1.45.3-jammy" # This version have to be synchronized with playwright version from package.json
6+
IMAGE_TAG="v1.49.0-jammy" # This version have to be synchronized with playwright version from package.json
77

88
NODE_MODULES_CACHE_DIR="$HOME/.cache/navigation-playwright-docker-node-modules"
99

1020 Bytes

0 commit comments

Comments
 (0)