diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..2777bfd --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,15 @@ +on: [pull_request] +name: Lint Check +jobs: + lint_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - uses: bahmutov/npm-install@v1 + with: + useLockFile: true + - name: Lint Check + run: npm run lint