mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
47e6ce9083
* build test test test Update action.yml Update action.yml test test Update action.yml Update action.yml Update action.yml test test Update ci.yml Update ci.yml test test test test Update action.yml test Update ci.yml Update e2e-ci.yml test * Update ci.yml * Update plugin-generator-e2e.yaml * test * test * test * test * Update e2e-ci.yml * Update e2e-ui.yml * test * Update ci.yml * Update ci.yml * Update action.yml * Update action.yml * Update package.json * Update static-data.yml * Update static-data.yml * Update website.yml * test * Update ui-components.yml * Update ui-components.yml * Update ui-components.yml
22 lines
553 B
YAML
22 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
|