-
-
Notifications
You must be signed in to change notification settings - Fork 152
Tree-sitter rolling fixes (January edition) #859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 77 commits
93ab0f7
fbc2c82
6069a59
09184d9
dfb2493
95de9bc
e972f92
bbf5242
99388fa
79d1cff
1ddcff4
55a8762
3d526d7
a53a9f6
cac042b
52e2efd
13c5c07
4a8df88
1ed84b8
3864c0d
f171f33
937cb15
57e812b
3cd7557
a13ffcd
dcf451c
5e84a7c
5aef671
e874d51
aff27bb
38534bb
fd0b9a2
cf884f5
c010993
81ca97e
054b067
e1e12ff
88ffe78
65de46f
7130f77
c2fb307
4d8a721
2a0ebac
46877b0
e48ac62
aeeb03a
33f193c
8766102
cc2785b
8525a3f
1e7e135
e0009ce
4c0e7dd
ee220dd
2aa0cea
6b89902
e001521
317679e
5fdcf62
6466d25
995196a
1b2163f
a0595b2
f1ce722
9265e5e
edf19b2
11910a1
476e784
ff030d8
ecf4fa3
312f627
483870d
5728b7f
adfdd05
6767cda
1f9ab20
a8215f1
e547ace
f691cfc
5855241
e49b919
94d41ce
2e36a24
4f3bc68
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.ts |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,6 +177,8 @@ jobs: | |
node ./rolling-release-binary-upload.js | ||
|
||
- name: Upload Video Artifacts | ||
# Run whether this job passed or failed, unless explicitly cancelled. | ||
if: '!cancelled()' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.os }} Videos | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can support this. 👍 Optional-to-read commentary: Seems kind of arbitrary to do this in this PR specifically, although I can imagine how it might have come up. Nevertheless I am in favor of this, we basically want to upload these if they've been made. And if they haven't been made, the 'upload video artifacts' job just warns us about it. So, this is effectively a best-effort to upload the test vids whenever possible, which I can get behind. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I needed to see the integration test failures to know what on earth was going on, and this is just the PR where it happened. |
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
.syntax--source.syntax--json { | ||
|
||
// Color JSON keys differently from other strings. | ||
.syntax--meta.syntax--structure.syntax--key { | ||
.syntax--string.syntax--quoted.syntax--double { | ||
color: #96CBFE; | ||
} | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
|
||
@import "styles/syntax/base.less"; | ||
@import "styles/syntax/css.less"; | ||
@import "styles/syntax/json.less"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
.syntax--source.syntax--json { | ||
|
||
// Color JSON keys differently from other strings. | ||
.syntax--meta.syntax--structure.syntax--key { | ||
.syntax--string.syntax--quoted.syntax--double { | ||
color: #008080; | ||
} | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
env: { jasmine: true }, | ||
globals: { | ||
waitsForPromise: true, | ||
}, | ||
rules: { | ||
"node/no-unpublished-require": "off", | ||
"node/no-extraneous-require": "off", | ||
"no-unused-vars": "off", | ||
"no-empty": "off" | ||
} | ||
}; |
Uh oh!
There was an error while loading. Please reload this page.