chore(deps-dev): bump eslint-plugin-typescript-sort-keys from 2.3.0 to 3.3.0 #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |