diff --git a/.github/workflows/playwright.yml b/.github/workflows/e2e.yml similarity index 79% rename from .github/workflows/playwright.yml rename to .github/workflows/e2e.yml index f2bf269..4b6a798 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/e2e.yml @@ -1,4 +1,4 @@ -name: Playwright Tests +name: Playwright end-to-end Tests on: push: branches: @@ -7,19 +7,19 @@ on: branches: - main jobs: - test: + e2e: timeout-minutes: 60 runs-on: ubuntu-latest strategy: matrix: node-version: [20] steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v3 with: version: 8 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'pnpm' @@ -29,7 +29,7 @@ jobs: run: pnpm exec playwright install --with-deps - name: Run Playwright tests run: pnpm exec playwright test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report