We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79019d2 commit 79be897Copy full SHA for 79be897
.github/workflows/linter.yml
@@ -0,0 +1,22 @@
1
+---
2
+name: Lint Code Base
3
+on:
4
+ push:
5
+ branches-ignore: [master, main]
6
+ pull_request:
7
+ branches: [master, main]
8
+jobs:
9
+ build:
10
+ name: Lint Code Base
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout Code
14
+ uses: actions/checkout@v3
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Lint Code Base
18
+ uses: github/super-linter@v4
19
+ env:
20
+ VALIDATE_ALL_CODEBASE: false
21
+ DEFAULT_BRANCH: main
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments