Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-12-06 00:19:46 +0300
committerJoas Schilling <coding@schilljs.com>2019-12-06 00:19:46 +0300
commit6f0ed57bb4f692de22aa485c6247d6fe15f97906 (patch)
treedc47f198061a8f1c5409bbb5743d002d44f5d553 /.github
parent85b386029374c52fa060fd0f4b2425a10cd8afe8 (diff)
Unify the stylelinting into 1 call
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 2acf7f9b9..847c71190 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -32,10 +32,8 @@ jobs:
node-version: 12.x
- name: Set up Stylelint 11
run: npm i -g stylelint@11.0.0
- - name: Lint CSS files
- run: "find css -name '*.css' -exec $(which stylelint) -f verbose {} \\;"
- - name: Lint SCSS files
- run: "find css -name '*.scss' -exec $(which stylelint) -f verbose {} \\;"
+ - name: Style lint
+ run: $(which stylelint) -f verbose css
eslint:
runs-on: ubuntu-latest