Merge pull request #391 from PavlidisLab/dependabot/npm_and_yarn/src/… #807
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
with: | |
lfs: true | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3.12.0 | |
with: | |
distribution: temurin | |
java-version: '8' | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.8.1 | |
with: | |
node-version: 16 | |
- name: Test code with Maven | |
run: ./mvnw test |