release: 3.0.7 #872
This file contains hidden or 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: dev-check-repository | |
| on: [push, pull_request] | |
| jobs: | |
| build-node-test: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: opendigitaleducation/node:10-alpine | |
| options: --user root -v ${{ github.workspace }}:/home/node/:rw | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Run npm install | |
| run: npm install | |
| - name: Run build node with Gulp | |
| run: node_modules/gulp/bin/gulp.js build | |
| - name: Run test | |
| run: npm test | |
| build-maven-test: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: maven:3.8.6-jdk-8 | |
| options: --user root -v ${{ github.workspace }}:/home/maven/:rw | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Run build maven | |
| run: mvn -Duser.home=/var/maven clean install | |
| - name: Run maven test | |
| run: mvn -Duser.home=/var/maven test | |