Skip to content

chore(environment): deactivate instead of delete #1194

chore(environment): deactivate instead of delete

chore(environment): deactivate instead of delete #1194

Workflow file for this run

# ~~ 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