Skip to content

Commit 435f90a

Browse files
committed
ci: run from custom url
1 parent dde1232 commit 435f90a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/integration-tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: Integration tests
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
inputs:
7+
url:
8+
description: 'API URL to test'
9+
required: true
10+
default: https://stacks-node-api.testnet.stacks.co
411

512
jobs:
613
test-integration:
@@ -9,6 +16,7 @@ jobs:
916
env:
1017
STX_NETWORK: ${{ matrix.stx_network }}
1118
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
19+
DEFAULT_TESTNET_STACKS_NODE_URL: ${{ github.event.inputs.name }}
1220

1321
strategy:
1422
matrix:

app/constants/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export const STATUS_PAGE_URL = 'http://status.test-blockstack.com';
2626

2727
export const DEFAULT_STACKS_NODE_URL = whenNetwork<string>({
2828
mainnet: 'https://stacks-node-api.mainnet.stacks.co',
29-
testnet: 'https://stacks-node-api.testnet.stacks.co',
29+
testnet:
30+
process.env.DEFAULT_TESTNET_STACKS_NODE_URL ?? 'https://stacks-node-api.testnet.stacks.co',
3031
});
3132

3233
export const EXPLORER_URL = 'https://explorer.stacks.co';

0 commit comments

Comments
 (0)