2023-11-24 11:55:39 -05:00
|
|
|
name: Install Dependencies & Build NPM Project
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
repository:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
description: Git repository URL
|
|
|
|
path:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: Path to NPM project root
|
2023-11-24 12:04:12 -05:00
|
|
|
default: ${{github.workspace}}
|
2023-11-24 12:10:48 -05:00
|
|
|
artifacts:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: Path to any artifacts you wish uploaded
|
2023-11-24 12:48:54 -05:00
|
|
|
artifact_name:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: Path to any artifacts you wish uploaded
|
|
|
|
default: ${{inputs.artifacts}}
|
2023-11-24 11:55:39 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
name: Install Dependencies & Build NPM Project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node
|
|
|
|
steps:
|
|
|
|
- name: Clone Repository
|
|
|
|
uses: ztimson/actions/clone@develop
|
|
|
|
with:
|
|
|
|
url: ${{inputs.repository}}
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm i
|
|
|
|
working-directory: ${{inputs.path}}
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm run build:prod || npm run build
|
|
|
|
working-directory: ${{inputs.path}}
|
2023-11-24 12:10:48 -05:00
|
|
|
|
|
|
|
- name: Upload Artifacts
|
|
|
|
if: ${{inputs.artifacts}} != ''
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-11-24 12:48:54 -05:00
|
|
|
name: ${{echo ${{inputs.artifact_name}} | sed s%/%_% }}
|
|
|
|
path: ${{inputs.artifacts}}
|