Skip to content

Bump eslint from 8.57.0 to 9.0.0 #69

Bump eslint from 8.57.0 to 9.0.0

Bump eslint from 8.57.0 to 9.0.0 #69

Workflow file for this run

name: Build
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
-
uses: actions/checkout@v3
-
name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
-
name: Install dependencies
run: yarn install
-
name: Install Playwright
run: npx playwright install --with-deps firefox
-
name: Run tests
run: npm run test && npm run build