Improve tests coverage and use replacement resolver for DID documents that have id different from the requested one. #291
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: Examples | |
on: [pull_request] | |
jobs: | |
master: | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_DOCK_NODE_IMAGE_TAG: "master" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "20.x" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
- run: npm install -g turbo@2.0.5 | |
- run: turbo telemetry disable | |
- run: turbo run examples-with-node | |
mainnet: | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_DOCK_NODE_IMAGE_TAG: "mainnet" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "20.x" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
- run: npm install -g turbo@2.0.5 | |
- run: turbo telemetry disable | |
- run: turbo run examples-with-node | |
testnet: | |
runs-on: ubuntu-latest | |
env: | |
CONFIG_DOCK_NODE_IMAGE_TAG: "testnet" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "20.x" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
- run: npm install -g turbo@2.0.5 | |
- run: turbo telemetry disable | |
- run: turbo run examples-with-node |