From cd7562c14ec54f49038f2ce2c8e394f7ec2b83c7 Mon Sep 17 00:00:00 2001 From: Michelle England Date: Wed, 13 Oct 2021 13:01:26 -0600 Subject: [PATCH] Create super-linter.yml --- .github/workflows/super-linter.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/super-linter.yml diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 00000000..532fd28e --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,27 @@ +--- +name: Lint Code Base + +on: + push: + branches-ignore: + - main + pull_request: + branches: + - main + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: true + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}