From 1eaecd78391ca6930b998439a6c15d818e84056f Mon Sep 17 00:00:00 2001 From: ECJ222 Date: Sat, 16 Jan 2021 09:13:55 +0100 Subject: [PATCH] added super linter --- .github/workflows/linter.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..10a6a28 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,25 @@ +name: Lint Awesome Actions + +on: + push: + branches-ignore: [master] + pull_request: + branches: [master] + +jobs: + build: + name: Lint Awesome Actions + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Lint Awesome Actions + uses: github/super-linter@v3 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: master + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file