Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.49.0 to 8.13.0 #81

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.49.0 to 8.13.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.49.0 to 8.13.0 #81

Workflow file for this run

name: Run checks
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.10.0"
- name: Cache npm cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Next.js Build
run: npm run build-prod:data-portal
- name: Run Prettier
run: npm run check-format
- name: Run Linter (ESLint)
run: npm run lint
- name: Type Check
run: npx tsc --noEmit