Skip to content

Commit

Permalink
fix: improve npm install success message (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous authored Apr 1, 2024
1 parent 8ce280e commit e884381
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-lint-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Update npm to latest
run: |
npm install --global npm@latest
echo "Updated npm to $(npm -v)"
echo "Successfully updated npm to $(npm -v)"
- name: Install dependencies
run: npm ci
- name: Run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-release-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Update npm to latest
run: |
npm install --global npm@latest
echo "Updated npm to $(npm -v)"
echo "Successfully updated npm to $(npm -v)"
- name: Install dependencies
run: npm ci
- name: Publish to npm registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
else
npm install --global npm@latest
fi
echo "Updated npm to $(npm -v)"
echo "Successfully updated npm to $(npm -v)"
- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit e884381

Please sign in to comment.