|
|
@ -50,8 +50,19 @@ jobs:
|
|
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
|
|
fetch-depth: 0
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Set-up Node.js
|
|
|
|
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
node-version: 16.x
|
|
|
|
|
|
|
|
cache: yarn
|
|
|
|
- name: Intall dependencies
|
|
|
|
- name: Intall dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Set-up RuboCop Problem Mathcher
|
|
|
|
|
|
|
|
uses: r7kamura/rubocop-problem-matchers-action@v1
|
|
|
|
|
|
|
|
- name: Set-up Stylelint Problem Matcher
|
|
|
|
|
|
|
|
uses: xt0rted/stylelint-problem-matcher@v1
|
|
|
|
|
|
|
|
# https://github.com/xt0rted/stylelint-problem-matcher/issues/360
|
|
|
|
|
|
|
|
- run: echo "::add-matcher::.github/stylelint-matcher.json"
|
|
|
|
|
|
|
|
|
|
|
|
################################
|
|
|
|
################################
|
|
|
|
# Run Linter against code base #
|
|
|
|
# Run Linter against code base #
|
|
|
@ -61,6 +72,7 @@ jobs:
|
|
|
|
env:
|
|
|
|
env:
|
|
|
|
CSS_FILE_NAME: stylelint.config.js
|
|
|
|
CSS_FILE_NAME: stylelint.config.js
|
|
|
|
DEFAULT_BRANCH: main
|
|
|
|
DEFAULT_BRANCH: main
|
|
|
|
|
|
|
|
NO_COLOR: 1 # https://github.com/xt0rted/stylelint-problem-matcher/issues/360
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.js
|
|
|
|
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.js
|
|
|
|
LINTER_RULES_PATH: .
|
|
|
|
LINTER_RULES_PATH: .
|
|
|
|