feat(dynamodb): configure billing mode and deletion protection #37
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
name: Check Config Files | |
on: | |
pull_request: {} | |
jobs: | |
check-mutation: | |
name: Check for mutations | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
registry-url: https://registry.npmjs.org | |
- name: Install winglang | |
run: npm i -g winglang | |
- name: Generate config files | |
run: ./mkrepo.sh | |
- name: Check for missing changes | |
run: git diff --exit-code || (echo 'Please run "./mkrepo.sh" from the root of | |
the repository, and commit any changes to your branch.' && exit 1) |