chore(tsconfig): remove deprecated baseUrl #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Browser | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| playwright: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: corepack enable | |
| - run: corepack pnpm install --frozen-lockfile | |
| - run: corepack pnpm exec playwright install --with-deps chromium | |
| - name: Browser interaction smoke | |
| run: corepack pnpm verify:ui | |
| - name: Production preview smoke | |
| run: corepack pnpm verify:preview | |
| - name: Upload Playwright diagnostics | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-diagnostics | |
| path: | | |
| playwright-report | |
| test-results | |
| if-no-files-found: ignore | |
| retention-days: 7 |