-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update config.yml * looks like the broad deleted a dependency
- Loading branch information
1 parent
1814207
commit 1e61b9a
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ orbs: | |
aws-s3: circleci/[email protected] | ||
node: circleci/[email protected] | ||
sam: circleci/[email protected] | ||
aws-cli: circleci/[email protected] # perform openid connect | ||
jobs: | ||
build: | ||
docker: | ||
|
@@ -14,7 +15,12 @@ jobs: | |
steps: | ||
- when: | ||
condition: <<parameters.aws_bucket>> | ||
executor: aws-cli/default | ||
steps: | ||
- aws-cli/setup: | ||
profile-name: WEB IDENTITY PROFILE | ||
role-arn: $AWS_ROLE_ARN | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
- checkout | ||
- node/install: | ||
install-yarn: false | ||
|
@@ -51,7 +57,12 @@ jobs: | |
steps: | ||
- when: | ||
condition: <<parameters.aws_bucket>> | ||
executor: aws-cli/default | ||
steps: | ||
- aws-cli/setup: | ||
profile-name: WEB IDENTITY PROFILE | ||
role-arn: $AWS_ROLE_ARN | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
- checkout | ||
- run: | ||
name: Validate index.js | ||
|
@@ -204,7 +215,7 @@ workflows: | |
tags: | ||
only: /.*/ | ||
context: | ||
- aws-lambda | ||
- aws-lambda-v2 | ||
- js_tests: | ||
filters: | ||
tags: | ||
|
@@ -218,4 +229,4 @@ workflows: | |
tags: | ||
only: /.*/ | ||
context: | ||
- aws-lambda | ||
- aws-lambda-v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters