- AWS CodePipeline
- AWS CDK
- CloudFormation
- AWS Lambda
- Node.js
- Typescript
- Jest for Unit Tests
For the first time, delpoy the pipeline with
cdk deploy
Otherwise, avoid deploy directly and push to the repo to trigger the pipeline.
npm test
testingStage.addPre(new CodeBuildStep('unit-tests', {
commands: [
'npm ci',
'npm test'
]
}))






