Skip to content

Commit

Permalink
feat: add linting pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
maijalintunokka committed Oct 10, 2024
1 parent a2952e6 commit 21e0b0c
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,21 @@ jobs:
run: npm run build

- name: Run tests
run: npm test
run: npm test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v2

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

- name: Install dependencies
run: npm ci

- name: Run lint
run: npm run lint

0 comments on commit 21e0b0c

Please sign in to comment.