From 9f55af139dbdd48c24351c9b364ebaf7894695f1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 13 Oct 2023 10:45:13 +0100 Subject: [PATCH] defaults.run.shell = bash Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a446b6d958d..0d52ad98dc9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,9 @@ jobs: - isDevelop: true image: ubuntu-latest runs-on: ${{ matrix.image }} + defaults: + run: + shell: bash steps: - uses: actions/checkout@v4 @@ -36,10 +39,5 @@ jobs: - name: Install Dependencies run: "./scripts/layered.sh" - # This is a CI specific issue, not worth investigating - - name: "[Windows] Manually install rimraf" - if: matrix.image == 'windows-latest' - run: npm i -g rimraf - - name: Build run: "yarn build"