Skip to content

Merge pull request #1 from Torgen/master #1

Merge pull request #1 from Torgen/master

Merge pull request #1 from Torgen/master #1

Workflow file for this run

#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base
#
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches:
- master
pull_request:
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v5.0.0
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_ENV: false
VALIDATE_HTML: false # They're actually spacebars
VALIDATE_JAVASCRIPT_STANDARD: false
LINTER_RULES_PATH: /
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}