diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 7d83a82..bd3081d 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -1,24 +1,24 @@ name: Playwright Tests on: push: - branches: [ main, master ] + branches: [main, master] pull_request: - branches: [ main, master ] + branches: [main, master] jobs: test: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Setup + - uses: actions/checkout@v4 + - name: Setup uses: ./tooling/github/setup - - name: Install Playwright Browsers - run: pnpm playwright:init - - name: Run Playwright tests for our nextjs app - run: pnpm test:e2e:nextjs - - uses: actions/upload-artifact@v4 - if: ${{ !cancelled() }} - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 \ No newline at end of file + - name: Install Playwright Browsers + run: pnpm playwright:init + - name: Run Playwright tests for our nextjs app + run: pnpm test:e2e:nextjs + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 30