Merge branch 'v-mshaganov/test-java' of https://github.com/mikhailshaganov/setup-java into v-mshaganov/test-java

This commit is contained in:
mikhailshaganov 2021-09-07 12:53:50 +03:00
commit e82f3a6636

View file

@ -1,6 +1,7 @@
name: Build Action name: Build Action
on: on:
workflow_dispatch:
push: push:
branches: branches:
- main - main
@ -19,15 +20,24 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Node.JS 12 - uses: actions/setup-java@v2
uses: actions/setup-node@v2 with:
with: distribution: 'temurin'
node-version: 12.x java-version: '11'
- run: npm ci cache: 'maven'
- run: npm run build - name: Build with Maven
- run: npm run format-check run: mvn -B package --file pom.xml
- run: npm test
- name: Verify no unstaged changes # - uses: actions/checkout@v2
if: runner.os != 'windows' # - name: Setup Node.JS 12
run: bash __tests__/verify-no-unstaged-changes.sh # uses: actions/setup-node@v2
# with:
# node-version: 12.x
# - run: npm ci
# - run: npm run build
# - run: npm run format-check
# - run: npm test
# - name: Verify no unstaged changes
# if: runner.os != 'windows'
# run: bash __tests__/verify-no-unstaged-changes.sh