Skip to content

Bump next from 14.2.33 to 14.2.35 #5

Bump next from 14.2.33 to 14.2.35

Bump next from 14.2.33 to 14.2.35 #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
qa:
name: Run QA tools
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run format check
run: npm run format:check