Skip to content

build(deps): bump @mui/x-date-pickers from 6.19.7 to 7.1.0 #1320

build(deps): bump @mui/x-date-pickers from 6.19.7 to 7.1.0

build(deps): bump @mui/x-date-pickers from 6.19.7 to 7.1.0 #1320

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'