Skip to content

Commit

Permalink
Prefer npm to NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry Gordon committed Apr 20, 2022
1 parent 80cecf8 commit fad6596
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

- name: Install NPM dependencies
- name: Install npm dependencies
run: npm ci

- name: Rebuild the dist/ directory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build-dependabot-changes:
runs-on: ubuntu-latest
needs: [fetch-dependabot-metadata]
# We only need to build the dist/ folder if the PR relates to Docker or a production NPM dependency, otherwise we don't expect changes.
# We only need to build the dist/ folder if the PR relates to Docker or a production npm dependency, otherwise we don't expect changes.
if: needs.fetch-dependabot-metadata.output.package-ecosystem == 'docker' || ( needs.fetch-dependabot-metadata.output.package-ecosystem == 'npm_and_yarn' && needs.fetch-dependabot-metadata.outputs.dependency-type == 'direct:production' )
steps:
# Check out using a PAT so any pushed changes will trigger checkruns
Expand All @@ -44,7 +44,7 @@ jobs:
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

- name: Install NPM dependencies
- name: Install npm dependencies
run: npm ci

# If we're reacting to a Docker PR, we have on extra step to refresh and check in the container manifest,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

- name: Install NPM dependencies
- name: Install npm dependencies
run: npm ci

- name: Pre-fetch the pinned images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}

- name: Install NPM dependencies
- name: Install npm dependencies
run: npm ci

- name: Check formatting
Expand Down

0 comments on commit fad6596

Please sign in to comment.