Skip to content

Commit

Permalink
Merge pull request #48 from Kashyap1ankit/fix/hero
Browse files Browse the repository at this point in the history
added linting ci
  • Loading branch information
Kashyap1ankit authored Nov 28, 2024
2 parents 768388b + ba6c63f commit 351a4df
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Formatting & Linting
run-name: Checking formatting & Linting

on:
pull_request:
branches: [main]

jobs:
Linting-formatting:
runs-on: ubuntu-latest
steps:
- name: Fixing the formatting
run: npm run format:fix

- name: Checking the formatting
run: npm run format:check

- name: Linting the code
run: npm run lint

0 comments on commit 351a4df

Please sign in to comment.