Skip to content

Replace jsonVal block with nwbib version (#1951) #1933

Replace jsonVal block with nwbib version (#1951)

Replace jsonVal block with nwbib version (#1951) #1933

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_OPTS: "-Xmx768M"
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
#- name: Install metafacture-core-snapshots
# run: |
# git clone https://github.com/metafacture/metafacture-core.git
# cd metafacture-core
# git checkout 5.7.0-rc1
# ./gradlew publishToMavenLocal
# cd ..
- name: Install metafacture-fix
run: |
cd ..
git clone https://github.com/metafacture/metafacture-fix.git
cd metafacture-fix
git checkout 1.1.2
./gradlew publishToMavenLocal
cd -
- name: Build with Maven
run: |
mvn install
mvn editorconfig:check
- name: Setup NodeJS
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Test json file s with ajv
run: |
npm install -g ajv-cli ajv-formats
cd src/test/resources/
bash validateJsonTestFiles.sh
cd -
- name: Cache SBT
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
- name: Build and Test with play
run: |
cd web
sbt -v +test