Skip to content

build(deps): bump org.webjars:webjars-locator from 0.47 to 0.50 #156

build(deps): bump org.webjars:webjars-locator from 0.47 to 0.50

build(deps): bump org.webjars:webjars-locator from 0.47 to 0.50 #156

name: CI with Maven - Test and Build
# Trigger the workflow pull request,
# but only for the main branch
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test and Build with Maven
run: ./mvnw --batch-mode clean verify