Skip to content

chore: update readme and docs #9

chore: update readme and docs

chore: update readme and docs #9

Workflow file for this run

name: Test build
on:
pull_request:
branches:
- main
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 # Skip downloading during bun install
PLAYWRIGHT_BROWSERS_PATH: 0 # Places binaries to node_modules/@playwright/test
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: playwright-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: bun install
- run: bunx playwright install --with-deps chromium
- name: Test build website
run: bun run build