fix: tailwind build error (#37728) #79
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: Studio E2E Tests | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'packages/pg-meta/**/*' | |
| - 'apps/studio/**' | |
| - 'e2e/studio/**' | |
| - 'pnpm-lock.yaml' | |
| pull_request: | |
| paths: | |
| - 'packages/pg-meta/**/*' | |
| - 'apps/studio/**' | |
| - 'e2e/studio/**' | |
| - 'pnpm-lock.yaml' | |
| - '.github/workflows/studio-e2e-test.yml' | |
| # 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 | |
| # Make the job non-blocking | |
| continue-on-error: true | |
| # Require approval only for external contributors | |
| environment: ${{ github.event.pull_request.author_association != 'MEMBER' && 'Studio E2E Tests' || '' }} | |
| env: | |
| EMAIL: ${{ secrets.CI_EMAIL }} | |
| PASSWORD: ${{ secrets.CI_PASSWORD }} | |
| PROJECT_REF: ${{ secrets.CI_PROJECT_REF }} | |
| NEXT_PUBLIC_IS_PLATFORM: true | |
| NEXT_PUBLIC_API_URL: https://api.supabase.green | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_STUDIO_HOSTED_PROJECT_ID }} | |
| NEXT_PUBLIC_HCAPTCHA_SITE_KEY: 10000000-ffff-ffff-ffff-000000000001 | |
| 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' | |
| - name: Install dependencies | |
| run: pnpm i | |
| - name: Install Vercel CLI | |
| run: pnpm add --global vercel@latest | |
| - name: Pull Vercel Environment Information (Preview) | |
| run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
| - name: Build Project Artifacts for Vercel | |
| run: vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
| - name: Deploy Project to Vercel and Get URL | |
| id: deploy_vercel | |
| run: | | |
| DEPLOY_URL=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}) | |
| echo "Vercel Preview URL: $DEPLOY_URL" | |
| echo "DEPLOY_URL=$DEPLOY_URL" >> $GITHUB_OUTPUT | |
| - name: Install Playwright Browsers | |
| run: pnpm -C e2e/studio exec playwright install --with-deps | |
| - name: Run Playwright tests | |
| id: playwright | |
| env: | |
| AUTHENTICATION: true | |
| STUDIO_URL: ${{ steps.deploy_vercel.outputs.DEPLOY_URL }}/dashboard | |
| run: pnpm e2e | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-artifacts | |
| path: | | |
| e2e/studio/playwright-report/ | |
| e2e/studio/test-results/ | |
| retention-days: 7 |