ユースケースビルダーがオフの際に Drawer 上部に白い線が入る件の修正 #454
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: Deny cdk.context.json | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check-cdk-context: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check for cdk.context.json | |
run: | | |
if [ -f "packages/cdk/cdk.context.json" ]; then | |
echo "cdk.context.json file found in the PR. This is not allowed." | |
exit 1 | |
fi |