diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 3a44f7a..8fb3d45 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -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 diff --git a/.github/workflows/dependabot-build.yml b/.github/workflows/dependabot-build.yml index 36c467b..8592624 100644 --- a/.github/workflows/dependabot-build.yml +++ b/.github/workflows/dependabot-build.yml @@ -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 @@ -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, diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 9daa39e..905b116 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d7b94a..762eb01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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