chore: Update Vaadin 24.9.1 #225
Workflow file for this run
This file contains hidden or 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: Validate assemblies | |
env: | |
GH_TOKEN: ${{ github.token }} | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
on: pull_request | |
jobs: | |
validate: | |
name: Validate assemblies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: '3.9.6' | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Spotless check | |
run: | | |
mvn spotless:check | |
- name: Build template and assemblies | |
run: | | |
mvn -ntp -B -q clean package | |
- name: Build each assembly | |
run: | | |
cd assembly/target | |
for ASSEMBLY in empty flow hilla hybrid; do | |
echo "Building walking-skeleton-${ASSEMBLY}" | |
unzip -q walking-skeleton-${ASSEMBLY} | |
cd walking-skeleton | |
mvn -ntp -B -q clean package | |
cd .. | |
rm -rf walking-skeleton | |
echo "Done" | |
done |