Skip to content

Commit

Permalink
ci(dev): try this
Browse files Browse the repository at this point in the history
  • Loading branch information
s4nt14go committed Sep 20, 2023
1 parent 2af6af8 commit 27124b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,10 @@ jobs:
npm run test-int
- name: E2E tests
run: npm run test-e2e
run: |
CREDS=`aws sts assume-role --role-arn arn:aws:iam::$DEPLOYMENT_ACCOUNT:role/ci-role --role-session-name=ci_user`
export AWS_ACCESS_KEY_ID=`echo $CREDS | jq -r '.Credentials.AccessKeyId'`
export AWS_SECRET_ACCESS_KEY=`echo $CREDS | jq -r '.Credentials.SecretAccessKey'`
export AWS_SESSION_TOKEN=`echo $CREDS | jq -r '.Credentials.SessionToken'`
npm run test-e2e

0 comments on commit 27124b8

Please sign in to comment.