Attempting to fix Playwright tests failing - human edition #821
This file contains 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: Run_Playwright_Tests_on_PRs | |
on: | |
pull_request: | |
paths-ignore: | |
- 'shows/*.md' | |
env: | |
PUBLIC_GITHUB_ID: ${{ secrets.PUBLIC_GITHUB_ID }} | |
GH_SECRET: ${{ secrets.GH_SECRET }} | |
DEEPGRAM_SECRET: ${{ secrets.DEEPGRAM_SECRET }} | |
PUBLIC_URL: ${{ secrets.PUBLIC_URL }} | |
SENTRY_AUTH_TOKEN: '' | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
UPSPLASH_TOKEN: '' | |
UPSPLASH_URL: '' | |
YOUTUBE_API_KEY: '' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: pnpm-setup | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Setup DB | |
run: pnpm db:generate | |
- name: Install playwright browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Run Playwright tests | |
run: pnpm exec playwright test |