mirror of
https://github.com/actions/setup-java.git
synced 2025-03-13 09:37:03 +00:00
Merge branch 'v-mshaganov/test-java' of https://github.com/mikhailshaganov/setup-java into v-mshaganov/test-java
This commit is contained in:
commit
e82f3a6636
1 changed files with 22 additions and 12 deletions
34
.github/workflows/build.yml
vendored
34
.github/workflows/build.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Build Action
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
@ -19,15 +20,24 @@ jobs:
|
|||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- 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
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '11'
|
||||
cache: 'maven'
|
||||
- name: Build with Maven
|
||||
run: mvn -B package --file pom.xml
|
||||
|
||||
# - uses: actions/checkout@v2
|
||||
# - 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