Skip to content

Update eslint monorepo to v10 (major) #76

Update eslint monorepo to v10 (major)

Update eslint monorepo to v10 (major) #76

Workflow file for this run

name: Build & Quality
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
quality:
name: Quality Gate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node (from .nvmrc)
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version-file: .nvmrc
cache: npm
- name: Install
run: npm ci
- name: Format (check)
run: npm run format --check
- name: Lint
run: npm run lint
- name: Type/Template check
run: npm run check
- name: Build
run: npm run build