Skip to content

Replace dependency @material-ui/core with @mui/material ^5.0.0 #244

Replace dependency @material-ui/core with @mui/material ^5.0.0

Replace dependency @material-ui/core with @mui/material ^5.0.0 #244

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [13.8.0]
steps:
- uses: actions/checkout@v2
- name: Use NodeJS
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install -g yarn
yarn
- name: Typecheck
run: yarn tsc
- name: Prettier
run: yarn format
env:
ci: TRUE