We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb98ee1 commit e0a9e81Copy full SHA for e0a9e81
super-linter.yml
@@ -0,0 +1,23 @@
1
+name: Lint Code Base
2
+
3
+on:
4
+ push:
5
+ branches: [ $default-branch ]
6
+ pull_request:
7
8
+jobs:
9
+ run-lint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
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: $default-branch
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments