Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Staschalapko committed Mar 8, 2024
1 parent c6a4fd5 commit 0eba452
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/playwright_pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
Expand Down

0 comments on commit 0eba452

Please sign in to comment.