chore(deps): bump @mui/material from 5.15.15 to 6.0.2 #1685
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test CI | |
on: push | |
permissions: | |
contents: write # to fetch code (actions/checkout) | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 # v3 | |
- name: Rust setup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: x86_64-apple-darwin | |
- name: Install rust target | |
run: rustup target add x86_64-apple-darwin | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build workspaces | |
run: yarn build | |
- name: Run Test | |
run: yarn test |