Lint code with GitHub actions

This commit is contained in:
nachtjasmin 2023-06-15 18:36:23 +02:00 committed by Jasmin
parent 28551cb663
commit 7f15e72f71

View file

@ -24,3 +24,12 @@ jobs:
name: Commit possible changes
with:
commit_message: "Format files using prettier"
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Run eslint
run: npm run lint