Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
ci(cicd): update synth project codebuild commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingh1 committed Jul 1, 2022
1 parent c0fa19a commit 208be8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cicd/stacks/pipeline-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ export class PipelineStack extends Stack {
version: '0.2',
phases: {
install: {
commands: [`n ${NODE_VERSION}`, 'cd packages/cicd', 'npm ci']
commands: [`n ${NODE_VERSION}`, 'npm ci']
},
build: {
commands: ['npm run build', `npm run cdk -- synth ${cdkContextArgs.join(' ')}`]
commands: ['cd packages/cicd', 'npm run build', `npm run cdk -- synth ${cdkContextArgs.join(' ')}`]
},
},
artifacts: {
Expand Down

0 comments on commit 208be8d

Please sign in to comment.