Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '22'
node-version: '24' # Use latest LTS version

- name: Check code style
run: npm run check:clean
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- if: steps.version.outputs.changed == 'true'
uses: actions/setup-node@v6
with:
node-version: '24'
node-version: '24' # Use latest LTS version
registry-url: https://registry.npmjs.org

- if: steps.version.outputs.changed == 'true'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ requests to a local or remote Trino cluster.
Implementation details:

* React TypeScript project with Vite
* Uses Node.js v20+
* Uses Node.js v24+
* Monaco editor + ANTLR parser using the Trino language

## Features
Expand Down
7 changes: 5 additions & 2 deletions precise/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions precise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"files": [
"dist"
],
"engines": {
"node": ">=24"
},
"type": "module",
"scripts": {
"dev": "vite",
Expand Down