File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
integration-tests/js-compute Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -460,6 +460,9 @@ jobs:
460
460
steps :
461
461
- name : Checkout fastly/js-compute-runtime
462
462
uses : actions/checkout@v3
463
+ with :
464
+ submodules : false
465
+ ref : ${{ github.head_ref || github.ref_name }}
463
466
- uses : actions/setup-node@v3
464
467
with :
465
468
node-version : ' lts/*'
@@ -499,6 +502,6 @@ jobs:
499
502
- name : Yarn install
500
503
run : yarn && cd ./integration-tests/js-compute && yarn
501
504
502
- - run : node integration-tests/js-compute/test.js ${{ matrix.platform == 'viceroy' && '--local' || '' }}
505
+ - run : SUFFIX_STRING=${{matrix.profile}} node integration-tests/js-compute/test.js ${{ matrix.platform == 'viceroy' && '--local' || '' }}
503
506
env :
504
507
FASTLY_API_TOKEN : ${{ secrets.FASTLY_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ zx.verbose = true;
58
58
const branchName = ( await zx `git branch --show-current` ) . stdout . trim ( ) . replace ( / [ ^ a - z A - Z 0 - 9 _ - ] / g, '_' )
59
59
60
60
const fixture = 'app' ;
61
- const serviceName = `${ fixture } --${ branchName } ${ starlingmonkey ? '--sm' : '' } `
61
+ const serviceName = `${ fixture } --${ branchName } ${ starlingmonkey ? '--sm' : '' } ${ process . env . SUFFIX_STRING || '' } `
62
62
let domain ;
63
63
const fixturePath = join ( __dirname , 'fixtures' , fixture )
64
64
let localServer ;
You can’t perform that action at this time.
0 commit comments