feat: prefixing with action name

This commit is contained in:
Leandro Costa 2025-07-11 12:44:26 -03:00
parent 497d109b44
commit 327ab1e92c
6 changed files with 22 additions and 22 deletions

View file

@ -25,14 +25,14 @@ inputs:
runs:
using: composite
steps:
- name: Install dependencies
- name: Build-Node-App Install dependencies
shell: sh
run: apk add nodejs
- name: Git Clone
- name: Build-Node-App_Git Clone
uses: actions/checkout@v4
- name: Restore Node Modules Cache
- name: Build-Node-App Restore Node Modules Cache
uses: actions/cache@v3
with:
path: ~/.npm
@ -40,7 +40,7 @@ runs:
restore-keys: |
${{ runner.os }}-nodejs-
- name: Build and Test
- name: Build-Node-App Build and Test
shell: sh
run: |
npm install
@ -48,7 +48,7 @@ runs:
npm run ${{ inputs.build_action }}
- uses: actions/upload-artifact@v3
name: Upload Artifact
name: Build-Node-App Upload Artifact
with:
name: ${{ inputs.artifact_name }}
path: ${{ inputs.build_path }}