Skip to content

πŸ—οΈ Render components server side when they have no javascript logic #304

πŸ—οΈ Render components server side when they have no javascript logic

πŸ—οΈ Render components server side when they have no javascript logic #304

Workflow file for this run

name: πŸ§ͺ Playwright Tests
on:
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: βš™οΈ Set node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: πŸ— Build
run: pnpm run build
- name: Run Playwright tests
run: pnpm run runHeaded
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30