Merge PR #921 from 'nodech/cleanup-class-members' #570
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint & Doc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: npm install --location=global bslint @hns-dev/bsdoc | |
- name: Install bslintrc | |
run: npm install bslintrc | |
- name: Lint | |
run: npm run lint | |
- name: Docs | |
run: npm run build-docs | |
test-coverage: | |
name: Test Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libunbound-dev | | |
npm install nyc coveralls | |
- name: Test | |
run: npm run test-ci | |
- name: Coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
build-test: | |
name: Build & Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [14.x, 16.x, 18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install libunbound | |
if: contains(matrix.os, 'ubuntu') | |
run: sudo apt-get update && sudo apt-get install -y libunbound-dev | |
# Pythong 3.10->3.11 broke node-gyp. This upgrades node-gyp for older nodejs. | |
# https://github.com/nodejs/node-gyp/issues/2219 | |
- name: Update npm. | |
if: contains(matrix.node, '14.x') | |
run: npm i -g npm@9 | |
- name: Install dependencies | |
run: npm install | |
- name: Test | |
run: npm test |