Wallet TX Count and time indexing #438
Workflow file for this run
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@v3 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
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 | |
test-coverage: | |
name: Test Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.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] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
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: Install dependencies | |
run: npm install | |
- name: Test | |
run: npm test |