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 966e2e4 commit 8d716caCopy full SHA for 8d716ca
.github/workflows/main.yml
@@ -11,3 +11,18 @@ jobs:
11
run: ci/build-app.sh
12
- name: Test
13
run: ci/unit-test-app.sh
14
+ Linting:
15
+ runs-on: ubuntu-latest
16
+ needs: [Build]
17
+ steps:
18
+ - name: Download code
19
+ uses: actions/download-artifact@v4
20
+ with:
21
+ name: code
22
+ path: .
23
+ - name: run linting
24
+ uses: super-linter/super-linter/slim@v7
25
+ env:
26
+ DEFAULT_BRANCH: main
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
+ DISABLE_ERRORS: true
0 commit comments