Skip to content

Fix checking for usecounter #1500

Fix checking for usecounter

Fix checking for usecounter #1500

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
jobs:
playwright:
name: 'Playwright Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Steps for Playwright testing with container
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Run your tests
timeout-minutes: 30
run: npm run pwtests-shutdown --workspace=playwright; npm run test --workspace=playwright
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
path: packages/playwright/test-results/
retention-days: 30