diff --git a/.github/workflows/build-browser.yml b/.github/workflows/build-browser.yml index 13cba52831..eb47e06c78 100644 --- a/.github/workflows/build-browser.yml +++ b/.github/workflows/build-browser.yml @@ -58,7 +58,6 @@ jobs: runs-on: ubuntu-20.04 needs: - setup - - lint steps: - name: Checkout repo uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # v3.0.0 @@ -223,7 +222,6 @@ jobs: - locales-test - build - crowdin-push - - lint steps: - name: Check if any job failed if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/rc') }} @@ -233,7 +231,6 @@ jobs: LOCALES_TEST_STATUS: ${{ needs.locales-test.result }} BUILD_STATUS: ${{ needs.build.result }} CROWDIN_PUSH_STATUS: ${{ needs.crowdin-push.result }} - LINT_STATUS: ${{ needs.lint.result }} run: | if [ "$CLOC_STATUS" = "failure" ]; then exit 1 @@ -245,8 +242,6 @@ jobs: exit 1 elif [ "$CROWDIN_PUSH_STATUS" = "failure" ]; then exit 1 - elif [ "LINT_STATUS" = "failure" ]; then - exit 1 fi - name: Login to Azure - Prod Subscription diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml index 043d4a25e5..dcc6b7f492 100644 --- a/.github/workflows/build-desktop.yml +++ b/.github/workflows/build-desktop.yml @@ -33,26 +33,6 @@ jobs: run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git - lint: - name: Lint - runs-on: ubuntu-20.04 - steps: - - name: Checkout repo - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 - - - name: Set up Node - uses: actions/setup-node@9ced9a43a244f3ac94f13bfd896db8c8f30da67a # v3.0.0 - with: - cache: 'npm' - cache-dependency-path: '**/package-lock.json' - node-version: '16' - - - name: Run linter - run: | - npm ci - npm run lint - - setup: name: Setup runs-on: ubuntu-20.04 @@ -525,7 +505,6 @@ jobs: needs: - setup - macos-build - - lint env: _PACKAGE_VERSION: ${{ needs.setup.outputs.package_version }} steps: @@ -709,7 +688,6 @@ jobs: needs: - setup - macos-build - - lint env: _PACKAGE_VERSION: ${{ needs.setup.outputs.package_version }} steps: @@ -885,7 +863,6 @@ jobs: needs: - setup - macos-build - - lint env: _PACKAGE_VERSION: ${{ needs.setup.outputs.package_version }} steps: @@ -1092,7 +1069,6 @@ jobs: needs: - cloc - setup - - lint - linux - windows - macos-build @@ -1105,7 +1081,6 @@ jobs: env: CLOC_STATUS: ${{ needs.cloc.result }} SETUP_STATUS: ${{ needs.setup.result }} - LINT_STATUS: ${{ needs.lint.result }} LINUX_STATUS: ${{ needs.linux.result }} WINDOWS_STATUS: ${{ needs.windows.result }} MACOS_BUILD_STATUS: ${{ needs.macos-build.result }} @@ -1117,8 +1092,6 @@ jobs: exit 1 elif [ "$SETUP_STATUS" = "failure" ]; then exit 1 - elif [ "$LINT_STATUS" = "failure" ]; then - exit 1 elif [ "$LINUX_STATUS" = "failure" ]; then exit 1 elif [ "$WINDOWS_STATUS" = "failure" ]; then