Skip to content

chore(deps): bump the next-ecosystem group with 2 updates #2

chore(deps): bump the next-ecosystem group with 2 updates

chore(deps): bump the next-ecosystem group with 2 updates #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-typecheck-build:
name: Lint · Type-check · Build
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint
- name: TypeScript type-check
run: npm run lint:types
- name: Production build
run: npm run build