We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb13d23 commit 0e62ee5Copy full SHA for 0e62ee5
language/syntaxes/expressions.tmGrammar.json
@@ -105,6 +105,12 @@
105
{
106
"include": "#string"
107
},
108
+ {
109
+ "include": "#op-comparison"
110
+ },
111
112
+ "include": "#op-logical"
113
114
115
"include": "#number"
116
@@ -141,6 +147,14 @@
141
147
"begin": "'",
142
148
"end": "'"
143
149
150
+ "op-comparison": {
151
+ "name": "keyword.operator.comparison.github-actions-expression",
152
+ "match": "(==|!=)"
153
154
+ "op-logical": {
155
+ "name": "keyword.operator.logical.github-actions-expression",
156
+ "match": "(&&|\\|\\|)"
157
144
158
"number": {
145
159
"name": "constant.numeric.github-actions-expression",
146
160
"match": "\\b[0-9]+(?:.[0-9]+)?\\b"
0 commit comments