Skip to content

fix: added the borders in cmment and made it look decent, padding and all. #169

fix: added the borders in cmment and made it look decent, padding and all.

fix: added the borders in cmment and made it look decent, padding and all. #169

Workflow file for this run

name: Linting and formatting on PR
on:
pull_request:
branches:
- '**'
jobs:
Continuous-Integration:
name: Performs linting, formatting on the application
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install --legacy-peer-deps
- name: Run linting check
run: npm run lint:check
- name: Check formatting
run: npm run format:fix