From 7eaae2e46fba070e0d42c14101f51156841444d1 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Tue, 13 Jul 2021 07:50:40 +0530 Subject: Trying to fix broken build due to missing 'git-sh-setup' for windows build agents. --- .github/workflows/ferdi-builds.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github') diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml index d89fbae6e..e69d03dcc 100644 --- a/.github/workflows/ferdi-builds.yml +++ b/.github/workflows/ferdi-builds.yml @@ -319,13 +319,17 @@ jobs: node-version: 14.17.3 - name: Fix corrupted node cache run: npm cache clean --force + shell: bash - name: Install node dependencies recursively run: npx lerna bootstrap + shell: bash - name: Package recipes run: npm i && npm run package working-directory: ./recipes + shell: bash - name: Run linter and tests run: npm run lint && npm run test + shell: bash - name: Build Ferdi without publish for any branch not 'nightly' and not 'release' if: ${{ env.GIT_BRANCH_NAME != 'nightly' && env.GIT_BRANCH_NAME != 'release' }} run: npm run build -- --publish never -- cgit v1.2.3-54-g00ecf