fix(destroy): point to correct stage #1193
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
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
name: lint | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.12.0 | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Set CDK Application Stage | |
id: stage | |
run: |- | |
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | |
echo ::set-output name=stage::"prod" | |
else | |
echo ::set-output name=stage::"pr-${{ github.event.number }}" | |
fi | |
- name: Synth | |
run: npx cdk synth --context stage=${{ steps.stage.outputs.stage }} | |
- name: Lint | |
uses: docker://ghcr.io/scottbrenner/cfn-lint-action:master | |
with: | |
args: -t cdk.out/**template.json -i E3002,E3003,W3005 |