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
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
// "**/node_modules": true,
"**/build": true,
"**/coverage": true
},
Expand All @@ -23,5 +23,6 @@
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"typescript.tsdk": "node_modules/typescript/lib"
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@
"ts-jest": "^29.0.3",
"uuid": "^9.0.0"
},
"overrides": {
"@types/node": "^22.15.15"
},
"scripts": {
"test": "jest",
"build": "tsc && cd lib && tsc && bestzip --force node ../../../lib/rds-lambda.zip ./*"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"moduleResolution": "node",
"module": "CommonJS",
"lib": ["ES2017"],
"types": ["node"],
"rootDir": "./"
}
}
6 changes: 4 additions & 2 deletions shared-scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function _publishToLocalRegistry {
fi

git checkout $BRANCH_NAME

# Fetching git tags from upstream
# For forked repo only
# Can be removed when using team account
Expand Down Expand Up @@ -232,6 +232,8 @@ function _setupE2ETestsLinux {
echo "Setup E2E Tests Linux"
loadCacheFromBuildJob
loadCache verdaccio-cache $CODEBUILD_SRC_DIR/../verdaccio-cache
# Ignore engines while we're still on Node 18.x
yarn config set ignore-engines true
_installCLIFromLocalRegistry
_loadTestAccountCredentials
_setShell
Expand Down Expand Up @@ -267,7 +269,7 @@ function _runCanaryTest {
echo RUN Canary Test
loadCacheFromBuildJob
loadCache verdaccio-cache $CODEBUILD_SRC_DIR/../verdaccio-cache
_installCLIFromLocalRegistry
_installCLIFromLocalRegistry
_loadTestAccountCredentials
_setShell
cd client-test-apps/js/api-model-relationship-app
Expand Down
Loading