FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lowcode-engine/.github/workflows/ci.yml at main · fe-lce/lowcode-engine · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
fe-lce
/
lowcode-engine
Public
forked from
alibaba/lowcode-engine
Notifications
You must be signed in to change notification settings
Fork
3
Star
16
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lowcode-engine
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
116 lines (95 loc) · 3.17 KB
Breadcrumbs
lowcode-engine
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
116 lines (95 loc) · 3.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name
:
Node CI
on
:
push
:
branches
:
-
main
pull_request
:
branches
:
-
main
jobs
:
upload-designer-codecov
:
runs-on
:
ubuntu-latest
#
if: ${{ github.event.pull_request.head.repo.full_name == 'fe-lce/lowcode-engine' }}
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
uses
:
actions/setup-node@v2
with
:
node-version
:
'
14
'
-
name
:
install
run
:
npm i && npm run setup:skip-build
-
name
:
test designer
run
:
cd packages/designer && npm run test:cov && cd ../..
-
name
:
Upload designer coverage to Codecov
uses
:
codecov/codecov-action@v3
with
:
#
working-directory: packages/designer
directory
:
./packages/designer/coverage
token
:
${{ secrets.CODECOV_TOKEN }}
name
:
designer
fail_ci_if_error
:
true
verbose
:
true
upload-renderer-core
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
uses
:
actions/setup-node@v2
with
:
node-version
:
'
14
'
-
name
:
install
run
:
npm i && npm run setup:skip-build
-
name
:
test renderer-core
run
:
cd packages/renderer-core && npm run test:cov && cd ../..
-
name
:
Upload renderer-core coverage to Codecov
uses
:
codecov/codecov-action@v3
with
:
#
working-directory: packages/designer
directory
:
./packages/renderer-core/coverage
token
:
${{ secrets.CODECOV_TOKEN }}
name
:
renderer-core
fail_ci_if_error
:
true
verbose
:
true
upload-react-simulator-renderer
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
uses
:
actions/setup-node@v2
with
:
node-version
:
'
14
'
-
name
:
install
run
:
npm i && npm run setup:skip-build
-
name
:
test react-simulator-renderer
run
:
cd packages/react-simulator-renderer && npm run test:cov && cd ../..
-
name
:
Upload react-simulator-renderer coverage to Codecov
uses
:
codecov/codecov-action@v3
with
:
#
working-directory: packages/designer
directory
:
./packages/react-simulator-renderer/coverage
token
:
${{ secrets.CODECOV_TOKEN }}
name
:
react-simulator-renderer
fail_ci_if_error
:
true
verbose
:
true
upload-code-generator
:
runs-on
:
ubuntu-latest
#
if: ${{ github.event.pull_request.head.repo.full_name == 'fe-lce/lowcode-engine' }}
steps
:
-
name
:
checkout
uses
:
actions/checkout@v2
-
uses
:
actions/setup-node@v2
with
:
node-version
:
'
14
'
-
name
:
install
run
:
npm i && npm run setup:skip-build
-
name
:
test code-generator
run
:
cd modules/code-generator && npm i && npm run build && npm run test:cov && cd ../..
-
name
:
Upload code-generator coverage to Codecov
uses
:
codecov/codecov-action@v3
with
:
#
working-directory: packages/designer
directory
:
./modules/code-generator/coverage
token
:
${{ secrets.CODECOV_TOKEN }}
name
:
code-generator
fail_ci_if_error
:
true
verbose
:
true
Back
|
FazBrowse Home
|
New Git URL