Skip to content

Bump @mui/material from 5.10.5 to 5.15.0 #339

Bump @mui/material from 5.10.5 to 5.15.0

Bump @mui/material from 5.10.5 to 5.15.0 #339

Workflow file for this run

name: Node CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, build, and test
run: |
yarn install
yarn lint
yarn build
yarn test --coverage
env:
CI: true
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}