|
1 | 1 | name: Playwright Tests
|
2 |
| -on: |
3 |
| - push: |
4 |
| - branches: [ main, master ] |
5 |
| - pull_request: |
6 |
| - branches: [ main, master ] |
| 2 | + |
| 3 | +on: [pull_requests, workflow_dispatch] |
| 4 | + |
7 | 5 | jobs:
|
8 | 6 | test:
|
9 | 7 | timeout-minutes: 60
|
10 | 8 | runs-on: ubuntu-latest
|
11 | 9 | steps:
|
12 |
| - - uses: actions/checkout@v4 |
13 |
| - - uses: actions/setup-node@v4 |
14 |
| - with: |
15 |
| - node-version: lts/* |
16 |
| - - name: Install dependencies |
17 |
| - run: npm install -g pnpm && pnpm install |
18 |
| - - name: Install Playwright Browsers |
19 |
| - run: pnpm exec playwright install --with-deps |
20 |
| - - name: Run Playwright tests |
21 |
| - run: pnpm exec playwright test |
22 |
| - - uses: actions/upload-artifact@v4 |
23 |
| - if: ${{ !cancelled() }} |
24 |
| - with: |
25 |
| - name: playwright-report |
26 |
| - path: playwright-report/ |
27 |
| - retention-days: 30 |
| 10 | + - uses: actions/checkout@v4 |
| 11 | + - uses: actions/setup-node@v4 |
| 12 | + with: |
| 13 | + node-version: lts/* |
| 14 | + - name: Install dependencies |
| 15 | + run: npm install -g pnpm && pnpm install |
| 16 | + - name: Install Playwright Browsers |
| 17 | + run: pnpm exec playwright install --with-deps |
| 18 | + - name: Run Playwright tests |
| 19 | + run: pnpm exec playwright test |
| 20 | + - uses: actions/upload-artifact@v4 |
| 21 | + if: ${{ !cancelled() }} |
| 22 | + with: |
| 23 | + name: playwright-report |
| 24 | + path: playwright-report/ |
| 25 | + retention-days: 30 |
0 commit comments