-
Notifications
You must be signed in to change notification settings - Fork 1.9k
106 lines (95 loc) · 3.28 KB
/
ui.yml
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the 'License'); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Frontend
on:
workflow_call:
concurrency:
group: frontend-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
code-style:
name: Code Style Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Dependencies
run: |
cd seatunnel-engine/seatunnel-engine-ui/
npm install
- name: Check Code Style
run: |
cd seatunnel-engine/seatunnel-engine-ui
npm run lint
sanity-check:
name: Sanity Check
needs: [code-style]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Verify Results
run: |
[[ ${{ needs.code-style.result }} == 'success' ]] || exit 1;
changes:
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
frontend-modules: ${{ steps.filter.outputs.modules }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "2000"
- name: Check File Changes
id: filter
run: |
# Navigate to the frontend directory
<<<<<<< HEAD
cd seatunnel/seatunnel-engine/seatunnel-ui
# Use git to find changed files in the frontend directory
git fetch origin
CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep "^seatunnel/seatunnel-engine/seatunnel-ui/")
=======
cd seatunnel-engine/seatunnel-engine-ui/
# Use git to find changed files in the frontend directory
git fetch origin
CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep "^seatunnel-engine/seatunnel-engine-ui/")
>>>>>>> bee242c138db576455d3d66a337fc9d4eb03579b
# If there are changes, list the affected modules
if [ -n "$CHANGED_FILES" ]; then
echo "modules=true" >> $GITHUB_OUTPUT
else
echo "modules=false" >> $GITHUB_OUTPUT
fi
unit-test:
needs: [changes, sanity-check]
if: needs.changes.outputs.frontend-modules == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Run Unit Tests
run: |
cd ./seatunnel-engine/seatunnel-ui
npm run test:unit