Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
satackey committed Jun 13, 2020
1 parent 64d216e commit d25f7ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/JavaScriptActionBuilder/PackageManagers/Npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export class Npm extends PackageManager {
}

async installDependencies() {
await this.exec(`npm ci`)
await super.exec(`npm ci`)
}
}
2 changes: 1 addition & 1 deletion src/JavaScriptActionBuilder/PackageManagers/Yarn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export class Yarn extends PackageManager {
}

async installDependencies() {
await this.exec(`yarn install --frozen-lockfile --non-interactive`)
await super.exec(`yarn install --frozen-lockfile --non-interactive`)
}
}

0 comments on commit d25f7ac

Please sign in to comment.