2022-05-21 22:33:18 +08:00

16 lines
303 B
YAML

name: Build Frontend
description: Build Frontend
runs:
using: "composite"
steps:
- name: Setup Node Environment
uses: ./.github/actions/setup-node
- name: Build Frontend
shell: bash
working-directory: ./admin-frontend
run: |
yarn install
yarn build