feat: prefixing with action name
This commit is contained in:
parent
497d109b44
commit
327ab1e92c
6 changed files with 22 additions and 22 deletions
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue