Skip to content

feat: add support for proof of absence in certificate lookups #1411

feat: add support for proof of absence in certificate lookups

feat: add support for proof of absence in certificate lookups #1411

Workflow file for this run

name: Unit tests
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
ghc: ['8.8.4']
spec:
- '0.16.1'
node:
- 18
- 20
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm
- run: npm install
# build monorepo incl. each subpackage
- run: npm run build --workspaces --if-present
# test monorepo incl. each subpackage
- run: npm run test
env:
CI: true
aggregate:
name: unit:required
if: ${{ always() }}
needs: [test]
runs-on: ubuntu-latest
steps:
- name: check e2e test result
if: ${{ needs.test.result != 'success' }}
run: exit 1