Skip to content

⬆️ Bump @playwright/test from 1.45.2 to 1.47.2 #458

⬆️ Bump @playwright/test from 1.45.2 to 1.47.2

⬆️ Bump @playwright/test from 1.45.2 to 1.47.2 #458

Workflow file for this run

name: Tests
on: [pull_request, push, workflow_dispatch]
jobs:
checkout-and-run:
runs-on: macos-latest
strategy:
matrix:
node-version: [v18.0.0]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run tests
run: npm run test
timeout-minutes: 10