From 0eba4523cceaef06a5ec0ff1ee73897261dfa0bd Mon Sep 17 00:00:00 2001 From: stanislavchalapko Date: Fri, 8 Mar 2024 12:05:48 +0200 Subject: [PATCH] debug --- .github/workflows/playwright_pre.yml | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/playwright_pre.yml b/.github/workflows/playwright_pre.yml index 97faf71b..8f87be24 100644 --- a/.github/workflows/playwright_pre.yml +++ b/.github/workflows/playwright_pre.yml @@ -10,10 +10,10 @@ jobs: timeout-minutes: 180 runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: 18 - name: Install dependencies run: npm ci - name: Install Playwright @@ -23,7 +23,7 @@ jobs: BASE_URL: ${{ secrets.BASE_URL }} LOGIN_EMAIL: ${{ secrets.LOGIN_EMAIL }} LOGIN_PWD: ${{ secrets.LOGIN_PWD }} - run: npm run test + run: npx playwright test --project=chrome -gv 'PERF' - name: Upload Playwright Report uses: actions/upload-artifact@v3 if: always() diff --git a/package.json b/package.json index 9fd4e69d..ccff5891 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "QA Test for Penpot", "main": "index.js", "scripts": { - "test": "npx playwright test --project=chrome -gv '!PERF'", + "test": "npx playwright test --project=chrome -gv 'PERF'", "testLogin": "npx playwright test --project=chrome -gv 'PERF' ./tests/login.spec.js", "updateSnapshots": "npx playwright test --update-snapshots", "firefox": "npx playwright test --project=firefox -gv 'PERF'",