We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d9769 commit 636ef7fCopy full SHA for 636ef7f
entrypoint.sh
@@ -10,6 +10,10 @@ function parseInputs(){
10
fi
11
}
12
13
+function installTypescript(){
14
+ npm install -g typescript
15
+}
16
+
17
function installAwsCdk(){
18
echo "Install aws-cdk ${INPUT_CDK_VERSION}"
19
if [ "${INPUT_CDK_VERSION}" == "latest" ]; then
@@ -75,6 +79,7 @@ ${output}
75
79
function main(){
76
80
parseInputs
77
81
cd ${GITHUB_WORKSPACE}/${INPUT_WORKING_DIR}
82
+ installTypescript
78
83
installAwsCdk
84
installPipRequirements
85
runCdk
0 commit comments