| 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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 |
| with: |
| egress-policy: audit |
| |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 |
| with: |
| fetch-depth: 0 |
| - run: git branch -a |
| - name: Use Node.js ${{ matrix.node-version }} |
| uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 |
| with: |
| node-version: ${{ matrix.node-version }} |
| - run: npm install |
| - run: FORMAT_START=refs/remotes/origin/main npm run lint |