[Feature][Engine UI] partial pages of the engine #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |