Skip to content

Commit

Permalink
Add linting to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Nov 23, 2023
1 parent 412ade6 commit f7de49a
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Check formatting
name: Check linting and formatting

on: push

jobs:
check-formatting:
name: Check formatting
check-linting-and-formatting:
name: Check linting and formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -14,5 +14,7 @@ jobs:
cache: npm
- run: |
npm install
- run: |
npm run lint
- run: |
npm run format-check

0 comments on commit f7de49a

Please sign in to comment.