From 6bb5668c1a3e182b32ae6e7cc6a554dd9ea879b4 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Mon, 1 Apr 2024 15:24:14 +0900 Subject: [PATCH] fix: improve `npm install` success message --- .github/workflows/nodejs-lint-reusable.yml | 2 +- .github/workflows/nodejs-release-reusable.yml | 2 +- .github/workflows/nodejs-test-reusable.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs-lint-reusable.yml b/.github/workflows/nodejs-lint-reusable.yml index 0efe52f..df7f016 100644 --- a/.github/workflows/nodejs-lint-reusable.yml +++ b/.github/workflows/nodejs-lint-reusable.yml @@ -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 diff --git a/.github/workflows/nodejs-release-reusable.yml b/.github/workflows/nodejs-release-reusable.yml index 56ec011..78a87f7 100644 --- a/.github/workflows/nodejs-release-reusable.yml +++ b/.github/workflows/nodejs-release-reusable.yml @@ -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 diff --git a/.github/workflows/nodejs-test-reusable.yml b/.github/workflows/nodejs-test-reusable.yml index de1b6f2..2063d33 100644 --- a/.github/workflows/nodejs-test-reusable.yml +++ b/.github/workflows/nodejs-test-reusable.yml @@ -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