Skip to content

Merge branch 'main' of https://github.com/bugzpodder/pysandbox #19

Merge branch 'main' of https://github.com/bugzpodder/pysandbox

Merge branch 'main' of https://github.com/bugzpodder/pysandbox #19

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 build
- name: Install chromium
run: yarn playwright install chromium
- name: Run Playwright tests
run: yarn test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30