Skip to content

Use std::task::ready instead of ready_polyfill::ready #26

Use std::task::ready instead of ready_polyfill::ready

Use std::task::ready instead of ready_polyfill::ready #26

Workflow file for this run

name: playwright
on:
pull_request:
push:
tags:
branches:
- master
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: examples/playwright
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
- run: npx playwright install --with-deps
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: examples/playwright/playwright-report/
retention-days: 30