Skip to content

Commit 5277057

Browse files
authored
Merge pull request #10 from pizzaminded/master
install typescript before aws-cdk installation
2 parents a6d9769 + 6879929 commit 5277057

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

entrypoint.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ function parseInputs(){
1010
fi
1111
}
1212

13+
function installTypescript(){
14+
npm install typescript
15+
}
16+
1317
function installAwsCdk(){
1418
echo "Install aws-cdk ${INPUT_CDK_VERSION}"
1519
if [ "${INPUT_CDK_VERSION}" == "latest" ]; then
@@ -75,6 +79,7 @@ ${output}
7579
function main(){
7680
parseInputs
7781
cd ${GITHUB_WORKSPACE}/${INPUT_WORKING_DIR}
82+
installTypescript
7883
installAwsCdk
7984
installPipRequirements
8085
runCdk

0 commit comments

Comments
 (0)