Skip to content

Automation Framework Intial Setup #4

Automation Framework Intial Setup

Automation Framework Intial Setup #4

Workflow file for this run

name: Playwright Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: yarn install
- name: Run Playwright Tests
working-directory: ./src/e2e/CareLeavers.E2ETests
run: npx playwright test