chore(firefox): rewrite error message for $HOME directory ownership mismatch #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright Tests | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
playwright: | |
name: 'Playwright Tests' | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:next-jammy | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install dependencies | |
run: npm run build | |
- name: Run your tests | |
run: npx playwright install --with-deps | |
working-directory: examples/todomvc | |
- name: Run your tests | |
run: npm i | |
working-directory: examples/todomvc | |
- name: Run your tests | |
run: npx playwright test | |
working-directory: examples/todomvc |