Reducing maxAzs to 1, and fargate tasks to 1 #66
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: ci | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events not on master | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout@v2 | |
uses: Brightspace/third-party-actions@actions/checkout | |
# see: https://github.com/aws-actions/configure-aws-credentials | |
- name: Assume role | |
uses: Brightspace/third-party-actions@aws-actions/configure-aws-credentials | |
with: | |
aws-region: us-east-1 | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-session-token: ${{ secrets.AWS_SESSION_TOKEN }} | |
role-duration-seconds: 3600 | |
role-skip-session-tagging: true | |
- name: Install packages | |
run: | | |
npm install typescript | |
npm i | |
- name: Npm Build | |
run: npm run build | |
- name: Cdk Diff ApiTestToolSetupStack | |
run: npx cdk diff ApiTestToolSetupStack | |
- name: Cdk Diff ApiTestToolAppStack | |
run: npx cdk diff ApiTestToolAppStack | |
- name: Log in to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: api_test_tool_repository | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
# cd .. | |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./src | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
- name: Log out of Amazon ECR | |
if: always() | |
run: docker logout ${{ steps.login-ecr.outputs.registry }} |