File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 42
42
if : github.event_name == 'pull_request'
43
43
run : git fetch --deepen=1
44
44
45
+ - name : Download Grazie plugin for grammar checks
46
+ # https://plugins.jetbrains.com/plugin/12175-grazie/versions
47
+ run : |
48
+ curl -L -o grazie.zip 'https://plugins.jetbrains.com/plugin/download?rel=true&updateId=257026'
49
+ unzip grazie.zip
50
+
51
+ - name : Download Grazie Professional plugin for grammar checks
52
+ # https://plugins.jetbrains.com/plugin/16136-grazie-professional/versions
53
+ run : |
54
+ curl -L -o grazie-pro.zip 'https://plugins.jetbrains.com/plugin/download?rel=true&updateId=260567'
55
+ unzip grazie-pro.zip
56
+
45
57
- name : Create empty folder to overwrite disabled plugin
46
58
run : |
47
59
mkdir empty
59
71
--upload-result,true
60
72
--linter,jetbrains/qodana-jvm-community:2023.1,
61
73
--property=idea.suppressed.plugins.id=com.intellij.gradle,
74
+ -v,${{ github.workspace }}/grazie:/opt/idea/plugins/grazie,
62
75
-v,${{ github.workspace }}/empty:/opt/idea/plugins/gradle-java,
76
+ -v,${{ github.workspace }}/grazie-pro:/opt/idea/plugins/grazie-pro,
63
77
--baseline,doc/qodana-baseline.sarif.json
64
78
65
79
# https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github#example-workflow-that-runs-the-eslint-analysis-tool
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ version: 1.0
2
2
profile :
3
3
path : doc/asciidoc-inspection.xml
4
4
plugins :
5
- # Grazie plugin ('tanvd.grazi') is already installed, no need to download it again
6
- - id : com.intellij.grazie.pro
7
5
# Order of plugin in the order which they depend on. AsciiDoc depends on Qodana pro, therefore add it after
8
6
- id : org.asciidoctor.intellij.asciidoc
9
7
exclude :
You can’t perform that action at this time.
0 commit comments