Skip to content

Commit

Permalink
add action to check for linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SkwalExe committed May 21, 2024
1 parent ba405c9 commit 30eebac
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/check_linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check linting

on:
pull_request:
types: [opened, synchronize]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install --include=dev
- name: Check linting
run: npm run lint

0 comments on commit 30eebac

Please sign in to comment.