File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Integration tests
2
2
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
4
11
5
12
jobs :
6
13
test-integration :
9
16
env :
10
17
STX_NETWORK : ${{ matrix.stx_network }}
11
18
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD : 1
19
+ DEFAULT_TESTNET_STACKS_NODE_URL : ${{ github.event.inputs.name }}
12
20
13
21
strategy :
14
22
matrix :
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ export const STATUS_PAGE_URL = 'http://status.test-blockstack.com';
26
26
27
27
export const DEFAULT_STACKS_NODE_URL = whenNetwork < string > ( {
28
28
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' ,
30
31
} ) ;
31
32
32
33
export const EXPLORER_URL = 'https://explorer.stacks.co' ;
You can’t perform that action at this time.
0 commit comments