Merge pull request #210 from AtlasOfLivingAustralia/hotfix/6.1.1 #129
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: ecodata-client-plugin build | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
- feature/** | |
- hotfix/** | |
env: | |
TZ: Australia/Canberra | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Install nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: npm run package-turf | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | |
- name: Run tests and jacoco coverage report with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: -PenableJacoco=true check | |
- name: Run javascript unit tests | |
run: node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless | |
- name: Clean to remove clover instrumentation | |
uses: gradle/[email protected] | |
with: | |
arguments: clean | |
- name: Publish the JAR to the repository | |
uses: gradle/[email protected] | |
with: | |
arguments: publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |