From 3e7d44b349b4aa92f554f6a467126ae01464798a Mon Sep 17 00:00:00 2001 From: ExE Boss Date: Mon, 18 Jul 2022 15:40:00 +0200 Subject: [PATCH] =?UTF-8?q?Always=C2=A0run=20the=C2=A0=E2=80=9CTypeScript?= =?UTF-8?q?=E2=80=9D=C2=A0step=20regardless=C2=A0of=20=E2=80=9CESLint?= =?UTF-8?q?=E2=80=9D=C2=A0outcome?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78a05301..5d7019a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,9 +36,12 @@ jobs: yarn cd .. - name: Lint + id: eslint run: | yarn lint - - name: TSLint + - name: TypeScript + id: typescript + if: ${{ success() || steps.eslint.outcome == 'failure' }} run: | cd gulp yarn gulp translations.fullBuild