From a87dab117af0484e8873a7e8e24ad331d8cfc425 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 21 Jul 2021 17:51:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Adds=20a=20GH=20action=20to=20li?= =?UTF-8?q?nt=20all=20merged=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/blank.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 00000000..d5be4189 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,21 @@ +# Lints code merged into master branch +name: Lint Code Base +on: + push: + pull_request: + branches: [master] +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: false + DEFAULT_BRANCH: master + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}