Skip to content

chore(deps): Bump the js-minor-patch group with 16 updates #7

chore(deps): Bump the js-minor-patch group with 16 updates

chore(deps): Bump the js-minor-patch group with 16 updates #7

Workflow file for this run

name: Verify Build & Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and Lint Verification
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 22
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run tests + coverage
run: npm run test:coverage
- name: Static Code Analysis (Lint)
run: npm run lint
- name: Compilation Build (Next.js Compiler)
run: npm run build