Bump com.github.eirslett:frontend-maven-plugin from 1.12.1 to 1.15.1 #3
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Exist ${{ matrix.exist-version }} (Java ${{ matrix.java-version }}) build and test | |
strategy: | |
fail-fast: true | |
matrix: | |
exist-version: [latest, 6.2.0] | |
java-version: ['8', '17'] | |
os: [ubuntu-latest] | |
exclude: | |
- exist-version: 6.2.0 | |
java-version: 17 | |
- exist-version: latest | |
java-version: 8 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
cache: maven | |
java-version: ${{ matrix.java-version }} | |
- name: Install Test Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y bats | |
- name: Maven Build | |
run: mvn clean package | |
- name: Add expath dependencies | |
working-directory: target | |
run: | | |
wget http://exist-db.org/exist/apps/public-repo/public/templating-1.1.0.xar -O 001.xar | |
# Install | |
- name: Start exist-ci containers | |
run: | | |
docker run -dit -p 8080:8080 -v ${{ github.workspace }}/target:/exist/autodeploy \ | |
--name exist --rm --health-interval=1s --health-start-period=1s \ | |
duncdrum/existdb:${{ matrix.exist-version }} | |
- name: wait for install to finish | |
timeout-minutes: 5 | |
run: | | |
while ! docker logs exist | grep -q "Server has started"; \ | |
do sleep 4s; \ | |
done | |
# Test | |
- name: Run smoke test | |
run: bats --tap src/test/bats/*.bats | |
- name: Run e2e test | |
run: npx cypress run | |
# - name: Test | |
# env: | |
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
# run: mvn verify |