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 9558920 commit b384d5bCopy full SHA for b384d5b
.github/workflows/superlinter.yml
@@ -0,0 +1,23 @@
1
+name: Lint Code Base
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+jobs:
9
+ run-lint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v3
14
+ with:
15
+ # Full git history is needed to get a proper list of changed files within `super-linter`
16
+ fetch-depth: 0
17
18
+ - name: Lint Code Base
19
+ uses: github/super-linter@v4
20
+ env:
21
+ VALIDATE_ALL_CODEBASE: false
22
+ DEFAULT_BRANCH: "main"
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments