fix build

This commit is contained in:
mikhailshaganov 2021-09-07 13:06:22 +03:00
parent e82f3a6636
commit b3b3b19a89

View file

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