fix: 需要先编译前端再测试

This commit is contained in:
hemengyang
2022-05-18 13:22:18 +00:00
committed by GitHub
parent 0bd11b48bc
commit 977d45bfbb
2 changed files with 41 additions and 25 deletions
+15
View File
@@ -0,0 +1,15 @@
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