File tree Expand file tree Collapse file tree 3 files changed +37
-1
lines changed
Expand file tree Collapse file tree 3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Pre Build
2+
3+ on :
4+ push :
5+ paths :
6+ - ' packages/**'
7+ - ' !packages/**.md'
8+ pull_request :
9+ paths :
10+ - ' packages/**'
11+ - ' !packages/**.md'
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - name : Checkout repository
19+ uses : actions/checkout@v2
20+
21+ - name : Install dependencies and setup
22+ run : npm install && npm run setup
23+
24+ - name : Build
25+ run : npm run build
26+
27+ - name : Check build status
28+ run : |
29+ if [ $? -eq 0 ]; then
30+ echo "Build succeeded!"
31+ else
32+ echo "Build failed!"
33+ exit 1
34+ fi
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export class CommonUI implements IPublicApiCommonUI {
2323 Form = Form ;
2424 Icon = Icon ;
2525 Input = Input ;
26- Loading = Loading ;
26+ Loading = Loading as any ;
2727 Message = Message ;
2828 Overlay = Overlay ;
2929 Pagination = Pagination ;
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ set -e
4+
35lerna run build \
46 --scope @alilc/lowcode-types \
57 --scope @alilc/lowcode-utils \
You can’t perform that action at this time.
0 commit comments