fix(deps): update dependency software.amazon.awssdk:bom from v2.29.38… #578
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 Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
TZ: Europe/Oslo | |
steps: | |
- uses: actions/checkout@v4 | |
# nodejs is needed because the dynamic download of it via the prettier maven plugin often | |
# times out | |
# Example: https://github.com/opentripplanner/OpenTripPlanner/actions/runs/4490450225/jobs/7897533439 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: maven | |
- name: Run tests | |
run: | | |
sudo timedatectl set-timezone "Europe/Oslo" | |
mvn --batch-mode jacoco:prepare-agent test jacoco:report -Dprettier.nodePath=node -Dprettier.npmPath=npm | |
mvn --batch-mode jib:dockerBuild -Dmaven.test.skip -P prettierSkip |