Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

[Feature] Material UI Table Integration and Footer Links Correction. #3

[Feature] Material UI Table Integration and Footer Links Correction.

[Feature] Material UI Table Integration and Footer Links Correction. #3

Workflow file for this run

name: Code Quality and Formatting Check
on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging
jobs:
check-code-quality:
name: Check Code Quality
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Node.js dependencies
run: yarn install
- name: Run ESLint
run: yarn eslint .
- name: Run Prettier
run: yarn prettier --check .