Skip to content

update the dynamodb table name for conflict #631

update the dynamodb table name for conflict

update the dynamodb table name for conflict #631

Workflow file for this run

name: Pull Request Build
on:
pull_request:
paths-ignore:
# The ignore only works only if changes to the main branch only include the following files.
# So if the commit only contain .md changes but the PR change contain more, the ignore fails
# https:/actions/runner/issues/2324#issuecomment-1703345084
- '**.md'
- '**.svg'
- '**.drawio'
- '**.png'
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- main
permissions: read-all
# Actions Used (please keep this documented here as added)
# https:/marketplace/actions/checkout
# https:/marketplace/actions/setup-python
# https:/marketplace/actions/trufflehog-oss
# https:/marketplace/actions/checkout
# https:/marketplace/actions/cache
# https:/actions-rust-lang/setup-rust-toolchain
jobs:
pre-commit-lint-security:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Print toolchain versions
run: |
node -v
python3 -V
pip3 -V
make --version
# TODO see whether we can leverage https:/pre-commit/action
- name: Install system-wide tools dependencies
run: |
pip3 install pre-commit detect-secrets black ggshield
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: TruffleHog OSS
uses: trufflesecurity/[email protected]
with:
path: ./
base: ${{ github.event.repository.default_branch }}
head: HEAD
extra_args: --debug --only-verified
- name: Install dependencies
run: |
make install
- name: Lint and code formatting
run: |
make check
test-stateless-suite:
# codebuild project name is initiated at ./lib/bin/statelessPipelineStack (PR-290)
# The format: `runs-on: codebuild-<project-name>-${{ github.run_id }}-${{ github.run_attempt }}`
# https://docs.aws.amazon.com/codebuild/latest/userguide/action-runner.html
runs-on: codebuild-orcabus-codebuild-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Rust installation
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install dependencies
run: |
yarn install --immutable
- run: make test-suite
test-stateful-stack:
# codebuild project name is initiated at ./lib/bin/statelessPipelineStack (PR-290)
# The format: `runs-on: codebuild-<project-name>-${{ github.run_id }}-${{ github.run_attempt }}`
# https://docs.aws.amazon.com/codebuild/latest/userguide/action-runner.html
runs-on: codebuild-orcabus-codebuild-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
yarn install --immutable
- run: make test-stateful
test-stateless-stack:
# codebuild project name is initiated at ./lib/bin/statelessPipelineStack (PR-290)
# The format: `runs-on: codebuild-<project-name>-${{ github.run_id }}-${{ github.run_attempt }}`
# https://docs.aws.amazon.com/codebuild/latest/userguide/action-runner.html
runs-on: codebuild-orcabus-codebuild-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Rust installation
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install dependencies
run: |
yarn install --immutable
- run: make test-stateless