Resolve most compiler warnings and other maven warnings #313
Workflow file for this run
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: Flock. eco build | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
- '!v*' | |
jobs: | |
build-kotlin: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven | |
- name: Build with Maven | |
run: mvn -B package --file ./pom.xml | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v1 | |
with: | |
report_paths: '**/target/surefire-reports/TEST-*.xml' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build-react: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.11.1' | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node- | |
- run: npm ci | |
- run: npm run bootstrap | |
- run: npm run generate | |
- run: npm run compile | |
- run: npm run prettier | |
- run: npm run lint | |
- run: npm run build |