Skip to content

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

Add more specific error when linked inputs are pending.

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

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:
include:
- name: "Older ubuntu with Node.js 12"
os: ubuntu-20.04
node-version: 12.x
- name: "Older ubuntu with Node.js 14"
os: ubuntu-20.04
node-version: 14.x
- name: "Latest ubuntu with Node.js 16"
os: ubuntu-latest
node-version: 16.x
- name: "Latest ubuntu with Node.js 16"
os: ubuntu-latest
node-version: 18.x
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install libunbound
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