Skip to content

security: update Next.js to 15.2.8 for CVE fixes #506

security: update Next.js to 15.2.8 for CVE fixes

security: update Next.js to 15.2.8 for CVE fixes #506

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-typecheck-format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.12
- name: Install dependencies
run: bun install
- name: Run linting
run: bun lint
- name: Run type checking
run: bun typecheck
- name: Check formatting
run: bun format:check
- name: Build application
run: bun run build