From e28a602272d7ee7027b0c15ee3bc577544ffe8b3 Mon Sep 17 00:00:00 2001 From: zoobestik Date: Fri, 25 Oct 2024 15:03:42 +0200 Subject: [PATCH] chore: upgrade github action --- .github/workflows/e2e.yml | 15 ++++++++------- package.json | 3 ++- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4daeaf2b..d4bd8e13 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -26,16 +26,16 @@ jobs: steps: # prepare core binaries - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: lts/* + node-version: 20 cache: 'yarn' - name: Install dependencies - run: yarn + run: yarn install --frozen-lockfile # optional, --immutable # run lint - name: Run tests @@ -49,7 +49,7 @@ jobs: echo version=$(npm info @playwright/test version) >> $GITHUB_OUTPUT - name: Cache Playwright binaries - uses: actions/cache@v3 + uses: actions/cache@v4 id: playwright-cache with: path: | @@ -75,12 +75,13 @@ jobs: - name: Run tests run: TEST_PROJECT_LIST="${{matrix.TEST_PROJECT_LIST}}" yarn test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: - name: playwright-report + name: "playwright-report-${{ matrix.os }}" path: | test-results/ playwright-report/ tests/**/__screenshots__/github_* retention-days: 5 + compression-level: 9 diff --git a/package.json b/package.json index c9c356c5..4aa61d19 100644 --- a/package.json +++ b/package.json @@ -87,5 +87,6 @@ "test:run": "playwright test", "test:server": "node tests/utils/server/index.js", "prepare": "husky install" - } + }, + "packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" }