From 8f6df3d438036fd29e8ac3859cbccd2788cab35d Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Fri, 13 Oct 2023 05:44:50 +0200 Subject: [PATCH 1/4] Bump playwright to 1.39.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2c3dadd72..79a1df29f 100644 --- a/package.json +++ b/package.json @@ -128,7 +128,7 @@ "jsdoc": "3.6.10", "jsdoc-typeof-plugin": "1.0.0", "json-server": "0.10.1", - "playwright": "1.38.1", + "playwright": "1.39.0", "puppeteer": "21.1.1", "qrcode-terminal": "0.12.0", "rosie": "2.1.0", From daa42e82ca90ea99a770ddf06effafe90942f4ac Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Fri, 13 Oct 2023 05:51:23 +0200 Subject: [PATCH 2/4] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9f2a6be5..4f3f87b95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Download Playwright and its dependencies -FROM mcr.microsoft.com/playwright:v1.35.1 +FROM mcr.microsoft.com/playwright:v1.39.0 ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true # Installing the pre-required packages and libraries From d2fbc5ccceb6a3f67ae9785535eb050b2e1c850a Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Fri, 13 Oct 2023 06:13:16 +0200 Subject: [PATCH 3/4] Update playwright.yml --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index c309f8978..e8f49b0ff 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -37,7 +37,7 @@ jobs: env: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true - name: Install deps - run: npm install playwright@1.35.1 & npx playwright install-deps + run: npx playwright install-deps - name: start a server run: "php -S 127.0.0.1:8000 -t test/data/app &" - name: run chromium tests From 94e6762b4a4d3a7783074e91c49545a20d9a96dd Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Fri, 13 Oct 2023 06:22:23 +0200 Subject: [PATCH 4/4] Update playwright.yml --- .github/workflows/playwright.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index e8f49b0ff..e2078deaa 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -36,8 +36,8 @@ jobs: npm install --legacy-peer-deps env: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true - - name: Install deps - run: npx playwright install-deps + - name: Install browsers and deps + run: npx playwright install && npx playwright install-deps - name: start a server run: "php -S 127.0.0.1:8000 -t test/data/app &" - name: run chromium tests