Skip to content

Commit

Permalink
ci: add simple github action to run lint on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
brunob committed Jan 22, 2024
1 parent 51425fd commit e28aae7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint

0 comments on commit e28aae7

Please sign in to comment.