Skip to content

Commit

Permalink
ci: switched 'npm install' to 'npm ci' (trailheadapps#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil authored May 16, 2020
1 parent 545cb3c commit 85cac5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scratch-org-sfdx-ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Install npm dependencies for Prettier and Jest
- name: 'Install npm dependencies'
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm install
run: npm ci

# Prettier formatting
- name: 'Code formatting verification with Prettier'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scratch-org-sfdx-ci-pr-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Install npm dependencies for Prettier and Jest
- name: 'Install npm dependencies'
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm install
run: npm ci

# Prettier formatting
- name: 'Code formatting verification with Prettier'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scratch-org-sfdx-ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Install npm dependencies for Prettier and Jest
- name: 'Install npm dependencies'
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm install
run: npm ci

# Prettier formatting
- name: 'Code formatting verification with Prettier'
Expand Down

0 comments on commit 85cac5a

Please sign in to comment.