Skip to content

fix docs

fix docs #40

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Build pysandbox
run: yarn workspace pysandbox build
- name: Install chromium
run: yarn workspace pysandbox playwright install chromium
- name: Run Playwright tests
run: yarn workspace pysandbox test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30