Skip to content

ci: disable JS Standard linter + style: change code style to that of … #14

ci: disable JS Standard linter + style: change code style to that of …

ci: disable JS Standard linter + style: change code style to that of … #14

name: Test Code Quality
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
permissions: {}
jobs:
build:
name: Test Code Quality
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
VALIDATE_SCSS: true
VALIDATE_MARKDOWN: false
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_JAVASCRIPT_PRETTIER: true
VALIDATE_JAVASCRIPT_STANDARD: false
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}