Skip to content

Commit

Permalink
Adding lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsommardahl committed Dec 12, 2024
1 parent dcf0c5a commit 898bfd7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,21 @@ jobs:
- name: audit
run: cd frontend && npm audit --omit=dev


lint:
name: 🧼 Ensure Code Style
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4

- name: Setup Node 16
uses: actions/setup-node@v4
with:
node-version: 16.x

- name: Install deps
run: cd frontend && npm i

- name: 😂 Lint code
run: cd frontend && npm run lint

0 comments on commit 898bfd7

Please sign in to comment.