Skip to content

chore(deps): bump @mui/material from 6.1.5 to 6.1.7 #99

chore(deps): bump @mui/material from 6.1.5 to 6.1.7

chore(deps): bump @mui/material from 6.1.5 to 6.1.7 #99

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