Skip to content

refactor!: rewrite for MUI 5 and package upgrades #308

refactor!: rewrite for MUI 5 and package upgrades

refactor!: rewrite for MUI 5 and package upgrades #308

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
name: Build on Node LTS
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Cache node modules
uses: actions/cache@v3
id: cache-modules
env:
cache-name: cache-node-${{ matrix.node }}-modules
with:
path: ./node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn install --prefer-offline --frozen-lockfile
- name: Build package
run: yarn build