Skip to content

feat:stage 审核支持 checklist 确认场景 #10920 #3367

feat:stage 审核支持 checklist 确认场景 #10920

feat:stage 审核支持 checklist 确认场景 #10920 #3367

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Frontend CI
on:
push:
branches: ["*"]
paths:
- "src/frontend/**"
pull_request:
branches: [master, release-*]
paths:
- "src/frontend/**"
workflow_dispatch:
workflow_call:
inputs:
upload:
required: true
type: string
jobs:
frontend:
name: Build frontend
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 9.5.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: src/frontend/pnpm-lock.yaml
- uses: nrwl/nx-set-shas@v4
with:
main-branch-name: master
- run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
- run: |
pnpm install
export NODE_OPTIONS=--openssl-legacy-provider
pnpm public
working-directory: src/frontend
- uses: actions/upload-artifact@v4
if: ${{ inputs.upload == 'true' }}
with:
name: frontend
path: src/frontend/frontend/