File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
packages/tests-e2e/src/connect/utils Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3737 AWS_COGNITO_CLIENT_ID : ${{ secrets.AWS_COGNITO_CLIENT_ID }}
3838 AWS_COGNITO_CLIENT_SECRET : ${{ secrets.AWS_COGNITO_CLIENT_SECRET }}
3939 AWS_REGION : ${{ secrets.AWS_REGION }}
40- AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
41- AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
40+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID_CONNECT_PLAYGROUND }}
41+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY_CONNECT_PLAYGROUND }}
4242
4343 GITHUB_RUN_ID : ${{ github.run_id }}
4444 SLACK_BOT_USER_OAUTH_TOKEN : ${{ secrets.SLACK_BOT_USER_OAUTH_TOKEN }}
Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ export default async function installPlaygroundDeps() {
8383 console . log ( `[Global Setup] Playground built successfully in ${ playgroundDir } .` ) ;
8484 resolve ( ) ;
8585 } else {
86- reject ( new Error ( `[Global Setup] npm run build-and-preview failed in ${ playgroundDir } with code ${ buildCode } ` ) ) ;
86+ reject (
87+ new Error ( `[Global Setup] npm run build-and-preview failed in ${ playgroundDir } with code ${ buildCode } ` ) ,
88+ ) ;
8789 }
8890 } ) ;
8991 buildProcess . on ( 'error' , ( err : Error ) => {
You can’t perform that action at this time.
0 commit comments