diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d3d0e78..3169283 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,5 +18,5 @@ jobs: node-version: 18 - name: elm-format install run: npm install elm-format - - name: Compile Elm - run: just check + - name: Check linting + run: just lint diff --git a/justfile b/justfile index 403bf80..1d32e40 100644 --- a/justfile +++ b/justfile @@ -6,6 +6,7 @@ build: lint: black --check . ruff check . + elm-format --validate elm/ # Format code format: