| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,18 @@ | |||
| 1 | + #!/bin/bash | ||
| 2 | + # | ||
| 3 | + # This file is part of the phpBB Forum Software package. | ||
| 4 | + # | ||
| 5 | + # @copyright (c) phpBB Limited <https://www.phpbb.com> | ||
| 6 | + # @license GNU General Public License, version 2 (GPL-2.0) | ||
| 7 | + # | ||
| 8 | + # For full copyright and license information, please see | ||
| 9 | + # the docs/CREDITS.txt file. | ||
| 10 | + # | ||
| 11 | + set -e | ||
| 12 | + set +x | ||
| 13 | + | ||
| 14 | + sudo npm install -g > /dev/null | ||
| 15 | + npm install > /dev/null | ||
| 16 | + set -x | ||
| 17 | + node_modules/stylelint/bin/stylelint.js "phpBB/styles/prosilver/theme/*.css" | ||
| 18 | + node_modules/stylelint/bin/stylelint.js "phpBB/adm/style/*.css" | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -80,6 +80,10 @@ jobs: | |||
| 80 | 80 | run: | | |
| 81 | 81 | .github/check-executable-files.sh ./ | |
| 82 | 82 | ||
| 83 | + - name: Check stylesheets | ||
| 84 | + run: | | ||
| 85 | + .github/check-stylesheet.sh | ||
| 86 | + | ||
| 83 | 87 | - name: Check commit message | |
| 84 | 88 | if: github.event_name == 'pull_request' | |
| 85 | 89 | run: | | |
| Back | FazBrowse Home | New Git URL |
0 commit comments