Skip to content

Commit 198407a

Browse files
Merge branch 'feature/dev-tools' into pr-4-testing
2 parents 21d2951 + 794bb69 commit 198407a

24 files changed

+1898
-246
lines changed

.c8rc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"templates",
99
"**/*.test.ts",
1010
"packages/ai-constructs/lib/conversation/runtime/default_handler_bundled",
11+
"packages/form-generator/lib/bundled",
1112
"packages/plugin-types",
1213
"packages/integration-tests"
1314
],

.changeset/dependabot-create-amplify-0c935f06cdad01b62c9b6a58463b2dee0782ecb7.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.

.eslintignore

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
1-
# Ignore artifacts:
2-
build
3-
coverage
4-
bin
5-
lib
6-
docs
7-
temp
8-
API.md
9-
examples
10-
verdaccio-cache
11-
expected-cdk-out
12-
test-projects
13-
14-
#auto generated files
15-
packages/client-config/src/client-config-schema
1+
node_modules/
2+
dist/
3+
cdk.out/
4+
*.js.map
5+
*.d.ts
6+
!packages/backend-secret/src/lib/crypto.d.ts
7+
coverage/
8+
.rush/
9+
.eslintrc.js
10+
userOutDir/
11+
generated/
12+
packages/cli/lib/
13+
templates/
14+
.next/
15+
.swc/
16+
test-out/
17+
packages/client-config/src/client-config.json
1618

1719
# Directory below is git-ignored. We create and delete test projects in e2e tests there.
1820
packages/integration-tests/src/e2e-tests
1921

2022
# Frontend code
2123
packages/cli/src/commands/sandbox/sandbox-devtools/react-app/**
2224
!packages/cli/src/commands/sandbox/sandbox-devtools/react-app/package.json
25+
26+
# This causes OOM
27+
packages/form-generator/bundle.js

.github/actions/build_with_cache/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ runs:
3939
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
4040
id: build-cache
4141
with:
42-
path: '**/lib'
42+
# cache build outputs and node_modules for bundled dependencies
43+
path: |
44+
**/lib
45+
packages/form-generator/node_modules
4346
key: ${{ steps.get-current-commit-sha.outputs.current_commit_sha }}-node${{ inputs.node-version }}-cdklib${{ inputs.cdk-lib-version }}
4447
enableCrossOsArchive: true
4548
# only build if cache miss

.github/actions/restore_build_cache/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ runs:
3131
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # version 4.2.0
3232
id: build-cache
3333
with:
34-
path: '**/lib'
34+
path: |
35+
**/lib
36+
packages/form-generator/node_modules
3537
key: ${{ github.sha }}-node${{ inputs.node-version }}-cdklib${{ inputs.cdk-lib-version }}
3638
fail-on-cache-miss: true
3739
enableCrossOsArchive: true

.github/workflows/health_checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
description: 'Include Windows?'
4343
required: false
4444
type: boolean
45-
default: true
45+
default: false
4646
node:
4747
description: 'Node versions list (as JSON array).'
4848
required: false
@@ -73,7 +73,7 @@ on:
7373
description: 'Include Windows?'
7474
required: false
7575
type: boolean
76-
default: true
76+
default: false
7777
node:
7878
description: 'Node versions list (as JSON array).'
7979
required: false
@@ -113,7 +113,7 @@ jobs:
113113
os+=', "macos-14"'
114114
os_for_e2e+=', "macos-14-xlarge"'
115115
fi
116-
if [ "${{ inputs.include-windows }}" != "false" ]; then
116+
if [ "${{ inputs.include-windows }}" == "true" ]; then
117117
os+=', "windows-2025"'
118118
os_for_e2e+=', "windows-2025"'
119119
fi
@@ -688,7 +688,7 @@ jobs:
688688
with:
689689
node-version: 18
690690
cdk-lib-version: ${{ needs.resolve_inputs.outputs.cdk_lib_version }}
691-
- run: npm run check:dependencies
691+
# - run: npm run check:dependencies
692692
check_tsconfig_refs:
693693
runs-on: ubuntu-latest
694694
needs:

0 commit comments

Comments
 (0)