1841 replace broken link pointing to tagalog dictionary (#1867) #37
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
name: Maven Regression Test (UI) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test_ENG: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: maven | |
- run: mvn clean | |
- run: mvn verify -P regression-testing-ui -D headless=true -D base.url=http://eng.elimu.ai | |
test_TGL: | |
needs: test_ENG | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: maven | |
- run: mvn clean | |
- run: mvn verify -P regression-testing-ui -D headless=true -D base.url=http://tgl.elimu.ai | |
test_HIN: | |
needs: test_TGL | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: maven | |
- run: mvn clean | |
- run: mvn verify -P regression-testing-ui -D headless=true -D base.url=http://hin.elimu.ai |