Skip to content

doc,chore: drop support for Node.js v14, v19 #747

doc,chore: drop support for Node.js v14, v19

doc,chore: drop support for Node.js v14, v19 #747

Workflow file for this run

name: Style Checks
on: [push, pull_request]
jobs:
lint:
if: github.repository == 'nodejs/node-addon-api'
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git branch -a
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: FORMAT_START=refs/remotes/origin/main npm run lint