From acc92461b014add18301450d57af0dc9119202bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lorber?= Date: Fri, 19 Mar 2021 18:53:46 +0100 Subject: [PATCH] chore: fix GH actions lint problem matchers issue in PR (#4471) --- .github/workflows/lint.yml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 31111332ea..ed4d9d8254 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: - name: Installation run: yarn - name: Lint - run: yarn lint + run: yarn lint:ci - name: Prettier Code run: yarn prettier:diff - name: Prettier Docs diff --git a/package.json b/package.json index c5458ba99e..406cb3b071 100644 --- a/package.json +++ b/package.json @@ -44,6 +44,7 @@ "prettier-docs": "prettier --config .prettierrc --write \"**/*.{md,mdx}\"", "prettier-docs:diff": "prettier --config .prettierrc --list-different \"**/*.{md,mdx}\"", "lint": "yarn lint:js && yarn lint:style", + "lint:ci": "yarn lint:js --quiet && yarn lint:style", "lint:js": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"", "lint:style": "stylelint \"**/*.css\"", "lerna": "lerna",