Skip to content

Build UI

Build UI #5

Workflow file for this run

name: Build UI
on: workflow_dispatch
jobs:
build-UI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: build UI
run: |
npm install -g @vue/cli
npm install -g @vue/cli-plugin-babel
npm install -g @vue/cli-plugin-eslint
npm install @vue/cli-service -g
cd ui
npm run build
ls dist