| name: Style Checks |
| |
| on: [push, pull_request] |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| lint: |
| if: github.repository == 'nodejs/node-addon-api' |
| strategy: |
| matrix: |
| node-version: [22.x] |
| os: [ubuntu-latest] |
| |
| runs-on: ${{ matrix.os }} |
| steps: |
| - name: Harden Runner |
| uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1 |
| with: |
| egress-policy: audit |
| |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
| with: |
| fetch-depth: 0 |
| - run: git branch -a |
| - name: Use Node.js ${{ matrix.node-version }} |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 |
| with: |
| node-version: ${{ matrix.node-version }} |
| - run: npm install |
| - run: FORMAT_START=refs/remotes/origin/main npm run lint |