Skip to content

Bump playwright and @playwright/test #44

Bump playwright and @playwright/test

Bump playwright and @playwright/test #44

Workflow file for this run

# .github/workflows/ci.yml
name: Automated Tests
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Install Playwright dependencies
run: npx playwright install
- name: Run tests
run: npm test