diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8dc95f5..5e8d8ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,4 +24,4 @@ jobs: with: node-version: 18 - run: just install-dependencies - - run: just format-check \ No newline at end of file + - run: just lint \ No newline at end of file diff --git a/justfile b/justfile index c3907ff..3490084 100644 --- a/justfile +++ b/justfile @@ -22,5 +22,6 @@ publish: build emit-types format: prettier --plugin-search-dir . --write . -format-check: +lint: + eslint --ext .ts . prettier --plugin-search-dir . --check . \ No newline at end of file