Skip to content

build(deps): bump @mui/icons-material from 5.15.13 to 5.15.18 #1344

build(deps): bump @mui/icons-material from 5.15.13 to 5.15.18

build(deps): bump @mui/icons-material from 5.15.13 to 5.15.18 #1344

Workflow file for this run

# This workflow runs lint and type checking scripts
name: Quality check (lint + type checking)
on:
pull_request:
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.13.0
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
env:
NODE_OPTIONS: '--max_old_space_size=8192'
- name: Check types
run: npm run check-types
env:
NODE_OPTIONS: '--max_old_space_size=8192'