Skip to content

Commit

Permalink
chore: Update Vaadin 24.4.11 (#1372)
Browse files Browse the repository at this point in the history
* chore: Update Vaadin 24.4.11

* chore: update validation.yml

* chore: simplify base test class

* chore: configure testbench parameters

---------

Co-authored-by: Manuel Carrasco Moñino <[email protected]>
  • Loading branch information
vaadin-bot and manolo authored Sep 3, 2024
1 parent d004952 commit 551ff62
Show file tree
Hide file tree
Showing 5 changed files with 1,616 additions and 1,608 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,38 @@ jobs:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- uses: actions/setup-java@v3
node-version: '21'
- uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '18'
distribution: 'temurin'
- name: Set TB License
run: |
TBL=${{ secrets.TB_LICENSE }}
[ -z "$TBL" ] && echo "No TB license provided" && exit 1
mkdir -p ~/.vaadin/
echo '{"username":"'`echo $TBL | cut -d / -f1`'","proKey":"'`echo $TBL | cut -d / -f2`'"}' > ~/.vaadin/proKey
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- uses: browser-actions/setup-chrome@latest
with:
chrome-version: stable
- uses: nanasess/setup-chromedriver@master
restore-keys: ${{ runner.os }}-maven-
- name: Verify
run: |
mvn -B -V -ntp verify -Dheadless -Pit,production
mvn -B -V -ntp verify -Pit,production -Dcom.vaadin.testbench.Parameters.headless=true -Dcom.vaadin.testbench.Parameters.testsInParallel=1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/target/*-reports/TEST*.xml"
check_run_annotations: all tests, skipped tests
check_run_annotations_branch: v24
- if: ${{always()}}
uses: actions/upload-artifact@v4
with:
name: files
path: |
**/error-screenshots
retention-days: 7
Loading

0 comments on commit 551ff62

Please sign in to comment.