diff --git a/.github/workflows/frontend-e2e.yml b/.github/workflows/frontend-e2e.yml index 7a335a44..da5703ca 100644 --- a/.github/workflows/frontend-e2e.yml +++ b/.github/workflows/frontend-e2e.yml @@ -9,23 +9,20 @@ on: paths: - 'apps/frontend/**' jobs: - test: + test-e2e: timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Install dependencies - run: npm install -g pnpm && pnpm install + - name: Setup + uses: ./tooling/github/setup - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps - name: Run Playwright tests - run: pnpm exec playwright test + run: turbo test:e2e -F frontend - uses: actions/upload-artifact@v3 if: always() with: name: playwright-report - path: playwright-report/ + path: apps/frontend/playwright-report retention-days: 30