# https://nektosact.com/usage/index.html # https://github.com/reviewdog/action-eclint name: On PR on: workflow_dispatch: pull_request: branches: [main] jobs: pr: name: Validates formatting and linting runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: reviewdog/action-eclint@d51e853275e707b64c0526881ada324f454c1110 # v1.7.1 with: reporter: github-pr-check eclint_flags: '--fix' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 with: node-version: 20.16 - run: npm ci - run: bs/lint.sh