mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-27 22:59:51 -05:00
23 lines
553 B
YAML
23 lines
553 B
YAML
|
name: 'Build app'
|
||
|
description: 'build verdaccio application'
|
||
|
|
||
|
inputs:
|
||
|
registry-url:
|
||
|
description: 'Registry URL for pnpm'
|
||
|
required: false
|
||
|
default: 'http://localhost:4873'
|
||
|
node-version:
|
||
|
description: 'Node.js version to use'
|
||
|
required: true
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: Install dependencies with a custom registry version ${{ inputs.node-version }}
|
||
|
uses: ./.github/actions/install-app-node
|
||
|
with:
|
||
|
node-version: ${{ inputs.node_version }}
|
||
|
- name: build
|
||
|
run: pnpm build
|
||
|
shell: bash
|