Skip to content

chore: rebase main #109

chore: rebase main

chore: rebase main #109

Workflow file for this run

name: Test MUI
on:
push:
paths:
- 'packages/mui/**'
branches-ignore:
- main
jobs:
test_mui:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Node Modules
run: npm ci -w packages/mui
- name: Lint Code
run: npm run lint:mui
- name: Utils Unit Test
run: npm run test:utils -w packages/mui
- name: Test Build
run: npm run build -w packages/mui