Skip to content

chore(deps): update actions/checkout digest to 692973e #130

chore(deps): update actions/checkout digest to 692973e

chore(deps): update actions/checkout digest to 692973e #130

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: denoland/setup-deno@v1
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies Prepare
run: |
cd e2e
yarn install
yarn playwright install --with-deps
- name: run server
run: |
deno run --allow-net --allow-read --allow-write --allow-env --allow-run --unstable server.ts &
sleep 20
- name: Run Playwright tests
run: |
cd e2e
yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: e2e/playwright-report/
retention-days: 30