Skip to content

Commit 31c4f13

Browse files
fix(core): Fixing installer failures (#673)
* Pushing pnpm lock file to lock package versions * Removing ignore pnpm-lock.yaml
1 parent 40350cf commit 31c4f13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Node.js modules
3030
run: |
3131
npm install -g pnpm
32-
pnpm install --unsafe-perm
32+
pnpm install --unsafe-perm --frozen-lockfile
3333
- name: Fix nasty bug in CDK
3434
run: |
3535
# This fix is needed in order to run initial-setup/templates tests

src/lib/cdk-accelerator/src/codebuild/cdk-deploy-project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class CdkDeployProjectBase extends cdk.Construct {
4545
const projectFiles = glob.sync('**/*', {
4646
cwd: props.projectRoot,
4747
nodir: true,
48-
ignore: ['**/cdk.out/**', '**/cdk.json', '**/node_modules/**', '**/pnpm-lock.yaml', '**/.prettierrc'],
48+
ignore: ['**/cdk.out/**', '**/cdk.json', '**/node_modules/**', '**/.prettierrc'],
4949
});
5050
for (const projectFile of projectFiles) {
5151
const source = path.join(props.projectRoot, projectFile);

0 commit comments

Comments
 (0)