Skip to content

Playwright Tests with Docker #1

Playwright Tests with Docker

Playwright Tests with Docker #1

Workflow file for this run

name: Playwright Tests with Docker
on: workflow_dispatch
jobs:
playwright:
name: 'Playwright Tests with Docker'
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.37.0-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run your tests
run: npm run test:chromium