Skip to content

Add more specific error when linked inputs are pending. #49

Add more specific error when linked inputs are pending.

Add more specific error when linked inputs are pending. #49

Workflow file for this run

name: Build
on:
push:
branches: [master, production-namebase]
pull_request:
branches: [master, production-namebase]
jobs:
lint:
name: Lint & Doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm install --location=global bslint @hns-dev/bsdoc
- name: Lint
run: npm run lint
- name: Docs
run: npm run build-docs
build-test:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [12.x, 14.x, 16.x, 18.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
- name: Setup Python 2.7
if: matrix.node == '12.x' || matrix.node == '14.x'
run: |
sudo apt-get update
sudo apt-get install -y python2.7
npm config set python python2.7
- name: Install dependencies
run: npm install
- name: Test
run: npm test