diff --git a/.github/scripts/commentResults.js b/.github/scripts/commentResults.js index a1a96089..9da18bf7 100644 --- a/.github/scripts/commentResults.js +++ b/.github/scripts/commentResults.js @@ -9,7 +9,6 @@ module.exports = async ({ backendTypecheck, mobileLint, mobileTest, - webCheck, webBuild, backendLintOutput, mobileLintOutput, @@ -57,7 +56,6 @@ ${mobileLint === 'failure' ? lintDetails(mobileLintOutput) : ''} | Check | Result | |---|---| -| Check | ${status(webCheck)} | | Build | ${status(webBuild)} | --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8cedac7..98ea42cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,7 +90,6 @@ jobs: runs-on: ubuntu-latest outputs: - check_result: ${{ steps.web_check.outcome }} build_result: ${{ steps.web_build.outcome }} steps: @@ -105,11 +104,6 @@ jobs: - name: Install web dependencies run: npm --prefix apps/web install - - name: Web check - id: web_check - continue-on-error: true - run: npm --prefix apps/web run lint - - name: Web build id: web_build continue-on-error: true @@ -117,7 +111,6 @@ jobs: - name: Fail job if any check failed if: > - steps.web_check.outcome == 'failure' || steps.web_build.outcome == 'failure' run: exit 1 @@ -188,7 +181,6 @@ jobs: backendLint: '${{ needs.backend-ci.outputs.lint_result }}', backendTest: '${{ needs.backend-ci.outputs.test_result }}', backendTypecheck: '${{ needs.backend-ci.outputs.typecheck_result }}', - webCheck: '${{ needs.web-ci.outputs.check_result }}', webBuild: '${{ needs.web-ci.outputs.build_result }}', mobileLint: '${{ needs.mobile-ci.outputs.lint_result }}', mobileTest: '${{ needs.mobile-ci.outputs.test_result }}',