Skip to content

chore(deps-dev): bump @eslint/js from 9.39.3 to 10.0.1 (#1) #7

chore(deps-dev): bump @eslint/js from 9.39.3 to 10.0.1 (#1)

chore(deps-dev): bump @eslint/js from 9.39.3 to 10.0.1 (#1) #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- run: npm ci
- name: Install Playwright browsers
run: npm run test:install
- name: Type check
run: npm run check
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Build
run: npm run build
- name: Test
run: npm run test