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