Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/deploy-blueprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,11 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: cloudformation/scenarios/localgov-ims/cdk/package-lock.json

- name: Build and synth localgov-ims CDK
working-directory: cloudformation/scenarios/localgov-ims/cdk
run: |
npm ci
npm install
npm run build
npx cdk synth

Expand Down Expand Up @@ -246,13 +244,11 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: cloudformation/scenarios/minute/cdk/package-lock.json

- name: Build minute CDK
working-directory: cloudformation/scenarios/minute/cdk
run: |
npm ci
npm install
npx cdk synth

- name: Strip bootstrap cruft and validate template
Expand Down
3 changes: 2 additions & 1 deletion cloudformation/scenarios/localgov-drupal/cdk/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"outDir": "./dist",
"rootDir": "./"
"rootDir": "./",
"types": ["jest", "node"]
},
"exclude": [
"node_modules",
Expand Down