From 01c4e60e2550bd4c91a6c323e38cb9ef7f3300fc Mon Sep 17 00:00:00 2001 From: Emmanuel Valverde Ramos Date: Wed, 13 Sep 2023 18:45:36 +0200 Subject: [PATCH] chore: wip --- .github/workflows/linter.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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 00000000..536a335d --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,26 @@ +on: + pull_request: + push: + branches: + - main + +name: Editorconfig Linter + +jobs: + + tests: + name: "Run tests on ${{ matrix.os }}" + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ 'ubuntu-latest' ] + steps: + - uses: actions/checkout@v3 + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + EDITORCONFIG_FILE_NAME: .editorconfig +