Skip to content

Commit

Permalink
Added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kyhau committed Sep 20, 2024
1 parent 9d2c04e commit 4723186
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 10 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/bedrock-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Bedrock - Build
run-name: Test IaC @ ${{ github.ref_name }}

on:
push:
paths:
- .github/workflows/bedrock-build.yml
- Bedrock/cdk/**

concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}

defaults:
run:
shell: bash

jobs:
bedrock-guardrail:
name: Test Bedrock Guardrail IaC
runs-on: ubuntu-latest
env:
ENV_STAGE: ${{ inputs.environment }}
steps:
- uses: actions/checkout@v4

- run: make lint-yaml
- run: make lint-python

- uses: actions/setup-node@v4
with:
node-version: 22

- name: Set up aws-cdk
run: make install-cdk

- name: Print deployment environment
run: |
echo "INFO: cdk version: $(cdk --version)"
echo "INFO: node version: $(node --version)"
echo "INFO: npm version: $(npm --version)"
echo "INFO: python3 version: $(python3 --version)"
- name: Run cdk synth
run: make synth-guardrail
20 changes: 10 additions & 10 deletions QuickSight/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# QuickSight

Jump to
- [Useful Libs and Tools](#useful-libs-and-tools)

---

## Useful Libs and Tools

- [awslabs/cid-framework](https://github.com/awslabs/cid-framework) - Cloud Intelligence Dashboards
# QuickSight

Jump to
- [Useful Libs and Tools](#useful-libs-and-tools)

---

## Useful Libs and Tools

- [awslabs/cid-framework](https://github.com/awslabs/cid-framework) - Cloud Intelligence Dashboards

0 comments on commit 4723186

Please sign in to comment.