From 912b805777dcf26dfacb60a1fa1c57cb198ff5da Mon Sep 17 00:00:00 2001 From: FreeScout Date: Sat, 23 Sep 2023 11:02:51 -0700 Subject: [PATCH] lint-js.yml --- .github/workflows/lint-js.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/lint-js.yml diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml new file mode 100644 index 000000000..a523a15dd --- /dev/null +++ b/.github/workflows/lint-js.yml @@ -0,0 +1,21 @@ +name: lint-js + +on: + push: + branches: + - master + - dist + workflow_dispatch: + +jobs: + build: + name: Lint JS + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Install NPM deps + run: npm ci + + - name: Run check + run: npm run lint