diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index d90777acdf..f930b7c92f 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -70,3 +70,13 @@ runs: lerna bootstrap } shell: powershell + + - name: "Go to backend" + if: ${{ failure() && runner.os == 'Windows' }} + run: cd packages\backend + shell: powershell + + - name: "Check backend output" + if: ${{ always() && runner.os == 'Windows' }} + run: npm run prepare + shell: powershell