Skip to content

Commit

Permalink
feat: enable super-lint (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-kelly committed Jan 14, 2023
1 parent 7fd86db commit 21585f7
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,32 +55,32 @@ jobs:
sarif_file: eslint-results.sarif
wait-for-processing: true

# super-linter:
# # Name the Job
# name: Lint Code
# # Set the agent to run on
# runs-on: ubuntu-latest
super-linter:
# Name the Job
name: Lint Code
# 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:
# # Full git history is needed to get a proper
# # list of changed files within `super-linter`
# fetch-depth: 0
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0

# ################################
# # Run Linter against code base #
# ################################
# - name: Lint Code
# uses: github/super-linter@v4
# env:
# VALIDATE_ALL_CODEBASE: false
# DEFAULT_BRANCH: develop
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
################################
# Run Linter against code base #
################################
- name: Lint Code
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 21585f7

Please sign in to comment.