Skip to content

Commit b7b8633

Browse files
authored
Use locked version of prettier (#64)
We had some drift between CI and what running locally, this PR makes sure to install all deps before running the linter. Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent c31aa70 commit b7b8633

4 files changed

Lines changed: 23 additions & 20 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- name: Setup Bun
1818
uses: oven-sh/setup-bun@v2
1919

20+
- name: Install dependencies
21+
run: bun install --frozen-lockfile
22+
2023
- name: Lint all code
2124
run: bunx prettier --check .
2225

bun.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
},
1111
"devDependencies": {
1212
"@types/bun": "latest",
13-
"prettier": "^3.8.1"
13+
"prettier": "^3.9.5"
1414
},
1515
"peerDependencies": {
16-
"typescript": "^5"
16+
"typescript": "^5.9.3"
1717
},
1818
"dependencies": {
19-
"shiki": "^4.0.0"
19+
"shiki": "^4.3.1"
2020
}
2121
}

rfcs/0015-variant-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ As described in [this](https://clickhouse.com/blog/a-new-powerful-json-data-type
147147

148148
- Do we want a JSON extension type that automatically compresses as variant?
149149

150-
- ~How do variant expressions operate over different variant encodings?~ Resolved this, just had to talk the new execution model with @joseph-isaacs.
150+
- ~~How do variant expressions operate over different variant encodings?~~ Resolved this, just had to talk the new execution model with @joseph-isaacs.
151151

152152
## Future Possibilities
153153

0 commit comments

Comments
 (0)