Skip to content

fix: Lot of small correction for design purpose #43

fix: Lot of small correction for design purpose

fix: Lot of small correction for design purpose #43

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
ci:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '22.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Format
run: yarn format:check
- name: Lint
run: yarn lint:check