-
Notifications
You must be signed in to change notification settings - Fork 20
35 lines (33 loc) · 1.5 KB
/
cheqd-sdk-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Cheqd blockchain modules tests
on: [pull_request]
jobs:
testnet:
runs-on: ubuntu-latest
env:
CHEQD_MNEMONIC: "steak come surprise obvious remain black trouble measure design volume retreat float coach amused match album moment radio stuff crack orphan ranch dose endorse"
CHEQD_IMAGE_TAG: 3.1.4
CHEQD_NETWORK: "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 [email protected]
- run: turbo telemetry disable
- run: CHEQD_MNEMONIC=$CHEQD_MNEMONIC CHEQD_IMAGE_TAG=$CHEQD_IMAGE_TAG CHEQD_NETWORK=$CHEQD_NETWORK turbo run test-with-node --filter @docknetwork/cheqd-blockchain-modules
mainnet:
runs-on: ubuntu-latest
env:
CHEQD_MNEMONIC: "steak come surprise obvious remain black trouble measure design volume retreat float coach amused match album moment radio stuff crack orphan ranch dose endorse"
CHEQD_IMAGE_TAG: 3.0.2
CHEQD_NETWORK: "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 [email protected]
- run: turbo telemetry disable
- run: CHEQD_MNEMONIC=$CHEQD_MNEMONIC CHEQD_IMAGE_TAG=$CHEQD_IMAGE_TAG CHEQD_NETWORK=$CHEQD_NETWORK turbo run test-with-node --filter @docknetwork/cheqd-blockchain-modules