Skip to content

⬆️ Bump prettier from 2.8.8 to 3.3.2 #381

⬆️ Bump prettier from 2.8.8 to 3.3.2

⬆️ Bump prettier from 2.8.8 to 3.3.2 #381

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