mirror of
https://github.com/supabase/supabase.git
synced 2026-05-27 14:58:19 +08:00
* fix: possible command injection in docs-lint * fix: explicit permissions for github actions
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
name: Studio E2E Tests
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- 'packages/pg-meta/**/*'
|
|
- 'apps/studio/**'
|
|
- 'tests/studio-tests/**'
|
|
- 'pnpm-lock.yaml'
|
|
pull_request:
|
|
branches: [master]
|
|
paths:
|
|
- 'packages/pg-meta/**/*'
|
|
- 'apps/studio/**'
|
|
- 'tests/studio-tests/**'
|
|
- 'pnpm-lock.yaml'
|
|
|
|
# Cancel old builds on new commit for same workflow + branch/PR
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'pnpm'
|
|
- uses: supabase/setup-cli@v1
|
|
with:
|
|
version: latest
|
|
- name: Install dependencies
|
|
run: pnpm i
|
|
- name: Install Playwright Browsers
|
|
run: pnpm -C tests/studio-tests exec playwright install --with-deps
|
|
- name: Run Playwright tests
|
|
run: pnpm test:e2e:studio-local
|
|
# mark the action as succeeded even if the tests failed. This is temporarily until we make the tests more stable.
|
|
# continue-on-error: true
|
|
- uses: actions/upload-artifact@v4
|
|
if: always()
|
|
with:
|
|
name: playwright-report
|
|
path: tests/studio-tests/playwright-report/
|
|
retention-days: 7
|