From b3b3b19a89bad5c126d947e7d04c656103bcec41 Mon Sep 17 00:00:00 2001 From: mikhailshaganov Date: Tue, 7 Sep 2021 13:06:22 +0300 Subject: [PATCH] fix build --- .github/workflows/build.yml | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 991e94dd..9eb0e32a 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,6 @@ name: Build Action on: - workflow_dispatch: push: branches: - main @@ -20,24 +19,15 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] steps: - - 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 + - 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