Skip to content

Bump eslint from 9.39.4 to 10.1.0 #40

Bump eslint from 9.39.4 to 10.1.0

Bump eslint from 9.39.4 to 10.1.0 #40

Workflow file for this run

name: CI Check
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint and type check
run: npm run check
- name: Build Next.js app
run: npm run build