Skip to content

fix ui action

fix ui action #1

Workflow file for this run

# 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;
unit-test:
needs: [sanity-check]
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 }}
run: |
cd seatunnel-engine/seatunnel-engine-ui/
npm install
npm run test:unit