Skip to content

chore(deps): bump @mui/material from 5.16.5 to 5.16.6 in /example #82

chore(deps): bump @mui/material from 5.16.5 to 5.16.6 in /example

chore(deps): bump @mui/material from 5.16.5 to 5.16.6 in /example #82

Workflow file for this run

name: Code Quality
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint