Bump @pagefind/default-ui from 1.0.3 to 1.1.1 in /docs #2
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: Integration Tests on Java 22 and Maven 4.0.0-beta-4 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 22 | |
- name: Switch To Maven 4 | |
run: | | |
echo "distributionUrl=https://dlcdn.apache.org/maven/maven-4/4.0.0-beta-4/binaries/apache-maven-4.0.0-beta-4-bin.zip" > .mvn/wrapper/maven-wrapper.properties | |
echo "wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar" >> .mvn/wrapper/maven-wrapper.properties | |
- name: Build with Maven | |
run: ./mvnw --batch-mode --update-snapshots install -Prun-its |