Skip to content
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from pizzaminded/master
Browse files Browse the repository at this point in the history
install typescript before aws-cdk installation
  • Loading branch information
youyo authored Jun 12, 2020
2 parents a6d9769 + 6879929 commit 5277057
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ function parseInputs(){
fi
}

function installTypescript(){
npm install typescript
}

function installAwsCdk(){
echo "Install aws-cdk ${INPUT_CDK_VERSION}"
if [ "${INPUT_CDK_VERSION}" == "latest" ]; then
Expand Down Expand Up @@ -75,6 +79,7 @@ ${output}
function main(){
parseInputs
cd ${GITHUB_WORKSPACE}/${INPUT_WORKING_DIR}
installTypescript
installAwsCdk
installPipRequirements
runCdk
Expand Down

0 comments on commit 5277057

Please sign in to comment.