Updated tests to make QVI AIDs delegated from GLEIF. Added api_test_no_delegation. Added singlesig delegation #2
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: Run Multisig Single User Non Delegated AIDs Tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
test-single-aid-multisig-non-delegated-aids: | |
name: Run multisig single user non delegated aids integration test using keria:${{ matrix.keria-version }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
defaults: | |
run: | |
working-directory: signify-ts-test/ | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
keria-version: ["0.2.0-dev3"] | |
node-version: ["20"] | |
env: | |
KERIA_IMAGE_TAG: ${{ matrix.keria-version }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install deps | |
run: | | |
npm cache clean --force | |
npm set registry https://registry.npmjs.org/ | |
npm ci | |
- name: Run docker | |
run: ./test-workflow.sh --docker=verify | |
- name: Build | |
run: ./test-workflow.sh --build | |
- name: Issue Credentials, Generate reports, API test, Verifier test | |
run: SPEED=fast WORKFLOW=multisig-single-user-non-delegated-aids.yaml CONFIGURATION=configuration-multisig-single-user-non-delegated-aids.json ./test-workflow.sh --data-report-verify-proxy | |