mirror of
https://github.com/actions/setup-java.git
synced 2025-03-14 10:07:02 +00:00
Update build.yml
This commit is contained in:
parent
5421cd2422
commit
9d70f85721
1 changed files with 22 additions and 12 deletions
30
.github/workflows/build.yml
vendored
30
.github/workflows/build.yml
vendored
|
@ -10,6 +10,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -20,14 +21,23 @@ jobs:
|
||||||
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:
|
||||||
node-version: 12.x
|
distribution: 'temurin'
|
||||||
- run: npm ci
|
java-version: '11'
|
||||||
- run: npm run build
|
cache: 'maven'
|
||||||
- run: npm run format-check
|
- name: Build with Maven
|
||||||
- run: npm test
|
run: mvn -B package --file pom.xml
|
||||||
- name: Verify no unstaged changes
|
|
||||||
if: runner.os != 'windows'
|
# - uses: actions/checkout@v2
|
||||||
run: bash __tests__/verify-no-unstaged-changes.sh
|
# - name: Setup Node.JS 12
|
||||||
|
# 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue