From fbb0c08c16d7ad95ffd4eaa625bbceab71ffd533 Mon Sep 17 00:00:00 2001 From: awesomeandrey Date: Thu, 26 Dec 2024 13:01:44 +0200 Subject: [PATCH] Minlopro: Added Shell Check job to CI workflow --- .github/workflows/pull_request_workflow.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_workflow.yml b/.github/workflows/pull_request_workflow.yml index 636dd23b..b0acc7ee 100644 --- a/.github/workflows/pull_request_workflow.yml +++ b/.github/workflows/pull_request_workflow.yml @@ -45,8 +45,16 @@ jobs: run: npm install - name: 'Run Jest Tests with Coverage' run: npm run jest:coverage + run-shell-check: + runs-on: ubuntu-latest + continue-on-error: true + steps: + - uses: actions/checkout@v4 + - uses: ludeeus/action-shellcheck@master + with: + ignore_paths: src validate-deployment-to-org: - needs: [ run-prettier-checks, run-jest-tests ] + needs: [ run-prettier-checks, run-jest-tests, run-shell-check ] environment: "Minlopro DevHub" env: SF_AUTH_URL: ${{ secrets.SF_AUTH_URL }}