Skip to content

Commit

Permalink
Implement code quality and formatting checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaynegi45 committed Sep 1, 2024
1 parent ba29fe6 commit 247a6a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Code Quality and Formatting

on: [push, pull_request]

jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Run ESLint
run: npm run lint

- name: Check for formatting issues
run: |
npm install prettier --save-dev
npx prettier --check '**/*.{ts,tsx,js,jsx,css,scss,md,html,json}'

0 comments on commit 247a6a0

Please sign in to comment.