Add a linting action for each PR
This commit is contained in:
parent
8fbe5fa323
commit
96921e1845
1 changed files with 13 additions and 0 deletions
13
.github/workflows/pr.yml
vendored
Normal file
13
.github/workflows/pr.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Lint
|
||||
|
||||
on:
|
||||
# Run on every push (this also covers pull requests)
|
||||
push:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: yarn install
|
||||
- run: yarn lint
|
Loading…
Add table
Reference in a new issue