Skip to content

Commit

Permalink
feat: Introduce super linter (#28)
Browse files Browse the repository at this point in the history
This PR introduces the super linter in an attempt to make our codebase better.

Contributes to: #24

Signed-off-by: Stelios Gkiokas stelios.giokas@camelotls.com
  • Loading branch information
sgkiokas committed Mar 10, 2021
1 parent 53c0492 commit ba45987
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/super-linter.yml
@@ -0,0 +1,23 @@
name: Lint Code Base

on:
pull_request

jobs:
super-lint:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v3
env:
DEFAULT_BRANCH: main
VALIDATE_DOCKERFILE: true
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_YAML: true
VALIDATE_ALL_CODEBASE: false

0 comments on commit ba45987

Please sign in to comment.