File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 26
26
jobs :
27
27
build :
28
28
# Name the Job
29
- name : Lint Code Base
29
+ name : Megalint Code Base
30
30
# Set the agent to run on
31
31
runs-on : ubuntu-latest
32
32
47
47
# Run Linter against code base #
48
48
# ###############################
49
49
- name : Lint Code Base
50
- uses : github/super -linter@v4
50
+ uses : nvuillam/mega -linter@v4
51
51
env :
52
52
VALIDATE_ALL_CODEBASE : false
53
53
DEFAULT_BRANCH : main
54
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
54
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
55
+
56
+ # Upload Mega-Linter artifacts. They will be available on Github action page "Artifacts" section
57
+ - name : Archive production artifacts
58
+ if : ${{ success() }} || ${{ failure() }}
59
+ uses : actions/upload-artifact@v2
60
+ with :
61
+ name : Mega-Linter reports
62
+ path : |
63
+ report
64
+ mega-linter.log
You can’t perform that action at this time.
0 commit comments