Skip to content

Commit

Permalink
🐛 linting is giving bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NormTurtle committed Jan 5, 2024
1 parent f9323e8 commit 3089b57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
---
### Super Linter
name: Linting Code Base using Super Linter
on:
push:
branches-ignore: [ "main" ]
branches-ignore: [main]
pull_request:
branches: [ "main" ]
branches: [main]
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:

- name: Checkout Code
uses: actions/checkout@v3
with:
# Checkout whole repo for Lint
fetch-depth: 0

fetch-depth: 0
- name: Lint Whole Pull request
uses: github/super-linter@v4
env:
# ALL_codebase parse the entire repository and find all files to validate across all types. NOTE: When set to false, only new or edited files will be parsed for validation.
# DEFAULT_BRANCH: [ "main", "Feat/Linter", "Test/Linter", "Normturtle-details", "Third-Branch" ]
VALIDATE_MARKDOWN: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3089b57

Please sign in to comment.