From 85dae9e444cbfc0bcd6f17c6c440704cdf8cef31 Mon Sep 17 00:00:00 2001 From: Kevin Schiffer Date: Wed, 14 Feb 2024 19:43:34 +0900 Subject: [PATCH] dev: Add stylus linting to CI --- .github/workflows/js.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 2b3cbad52ab..7f4b0f809a3 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -39,6 +39,8 @@ jobs: run: tools/bin/mage -v jsSDK:lint - name: Lint frontend code run: tools/bin/mage -v js:lint + - name: Lint stylus files + run: tools/bin/mage -v styl:lint - name: Check for diff run: tools/bin/mage git:diff