mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-28 07:58:31 +00:00
52 lines
1.7 KiB
YAML
52 lines
1.7 KiB
YAML
# Copyright 2021 Collate
|
|
# Licensed 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.
|
|
|
|
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
|
|
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
|
|
|
|
name: Selenium Java CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'openmetadata-ui/src/main/resources/ui/**'
|
|
- 'openmetadata-ui/src/test/java/org/openmetadata/catalog/selenium/pages/**'
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- 'openmetadata-ui/src/main/resources/ui/**'
|
|
- 'openmetadata-ui/src/test/java/org/openmetadata/catalog/selenium/pages/**'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'adopt'
|
|
|
|
- name: Generating Data Models
|
|
run: make install_dev generate
|
|
|
|
- name: Start Server and Ingest Sample Data
|
|
run: ./docker/run_local_docker.sh
|
|
timeout-minutes: 20
|
|
|
|
- name: Run Page Tests
|
|
run: mvn clean test -Dtest="org.openmetadata.catalog.selenium.pages.**.*.java" -DfailIfNoTests=false
|
|
|