Add a linting action for each PR

This commit is contained in:
Manav Rathi 2024-02-17 13:02:15 +05:30
parent 8fbe5fa323
commit 96921e1845

13
.github/workflows/pr.yml vendored Normal file
View 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