Skip to content

chore(deps-dev): bump eslint-plugin-jsdoc from 48.1.0 to 50.5.0 #94

chore(deps-dev): bump eslint-plugin-jsdoc from 48.1.0 to 50.5.0

chore(deps-dev): bump eslint-plugin-jsdoc from 48.1.0 to 50.5.0 #94

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