Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ jobs:
fi

- name: Infrastructure build check
working-directory: ./infrastructure
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "## Infrastructure Build" >> $GITHUB_STEP_SUMMARY
Expand All @@ -191,6 +192,7 @@ jobs:
fi

- name: Infrastructure security audit
working-directory: ./infrastructure
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "## Infrastructure Security Audit" >> $GITHUB_STEP_SUMMARY
Expand All @@ -207,6 +209,7 @@ jobs:
fi

- name: Infrastructure package analysis
working-directory: ./infrastructure
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "## Infrastructure Package Analysis" >> $GITHUB_STEP_SUMMARY
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
deploy:
name: Deploy to DEV
uses: ./.github/workflows/reusable-deploy.yml
uses: ./.github/workflows/deploy-reusable.yml
with:
aws_role_arn: ${{ vars.AWS_ROLE_ARN_DEV }}
env: dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
deploy:
name: Deploy to PROD
uses: ./.github/workflows/reusable-deploy.yml
uses: ./.github/workflows/deploy-reusable.yml
with:
aws_role_arn: ${{ vars.AWS_ROLE_ARN_PROD }}
env: prod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
deploy:
name: Deploy to QA
uses: ./.github/workflows/reusable-deploy.yml
uses: ./.github/workflows/deploy-reusable.yml
with:
aws_role_arn: ${{ vars.AWS_ROLE_ARN_QA }}
env: qa
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy
name: Deploy (Reusable)

on:
workflow_call:
Expand Down
8 changes: 6 additions & 2 deletions infrastructure/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infrastructure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-starter-infrastructure",
"version": "1.3.0-alpha.1",
"version": "1.3.0",
"private": true,
"scripts": {
"build": "tsc",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
],
"author": "LeanStacks",
"license": "MIT",
"version": "1.3.0-alpha.1",
"version": "1.3.0",
"type": "module",
"repository": {
"type": "git",
Expand Down