Skip to content

Merge pull request #93 from tnfshcec/chore/tooling-config #67

Merge pull request #93 from tnfshcec/chore/tooling-config

Merge pull request #93 from tnfshcec/chore/tooling-config #67

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run tests
run: npm run test