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 d72c378 commit 897df2cCopy full SHA for 897df2c
.github/workflows/linter.yaml
@@ -0,0 +1,28 @@
1
+---
2
+name: Lint Code Base
3
+
4
+on:
5
+ push:
6
+ branches-ignore: [master, main]
7
+ # Remove the line above to run when pushing to master
8
+ pull_request:
9
+ branches: [master, main]
10
11
+jobs:
12
+ build:
13
+ name: Lint Code Base
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout Code
18
+ uses: actions/checkout@v2
19
+ with:
20
+ # Full git history is needed to get a proper list of changed files within `super-linter`
21
+ fetch-depth: 0
22
23
+ - name: Lint Code Base
24
+ uses: github/super-linter/slim@v4
25
+ env:
26
+ VALIDATE_ALL_CODEBASE: true
27
+ DEFAULT_BRANCH: master
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments