Skip to content

Bump org.webjars:jquery from 3.6.0 to 3.7.1 #149

Bump org.webjars:jquery from 3.6.0 to 3.7.1

Bump org.webjars:jquery from 3.6.0 to 3.7.1 #149

name: Maven Pull Request Build
on:
pull_request:
branches:
- "*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Cache maven repository
uses: actions/cache@v2
with:
path: |
~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven
- name: Checkout Source
uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: |
export GIT_COMMIT_SHA=${GITHUB_SHA}
mvn -B install
mvn -B dockerfile:build
echo "Tagging ${GIT_COMMIT_SHA}"
mvn dockerfile:tag@tag-hash
source ./docker_test.sh
- name: Test with CodeCov
run: |
bash <(curl -s https://codecov.io/bash)