Skip to content

Fixed Playwright + Jest tests #7

Fixed Playwright + Jest tests

Fixed Playwright + Jest tests #7

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
npm i
npx playwright install
- name: Run tests
run: npm run test
- name: Test ESLint
run: npx eslint