Skip to content

Remove border radiuses #23

Remove border radiuses

Remove border radiuses #23

Workflow file for this run

name: Code Formatting Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install Dependencies
run: npm install && cd client && npm install
- name: Run Prettier
run: npm run pretty-check
- name: Run ESLint
run: npm run lint-check && cd client && npm run lint-check