Skip to content

Build UI

Build UI #8

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-service @vue/cli-plugin-babel @vue/cli-plugin-eslint @vue/cli-plugin-router
cd ui
npm run build
ls dist