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
3 changes: 2 additions & 1 deletion .github/actions/node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ description: "This action install node and cache modules. It uses pnpm as packag
inputs:
node-version:
description: "The node version to install (Default: lts)"
default: "lts/*"
# TODO: revert to lts/* after 20 is EOL
default: "22.x"
required: false
working-directory:
description: "The working directory of your node package"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

strategy:
matrix:
node-version: ['20.x', '22.x']
node-version: ["22.x", "24.x"]
Comment thread
coderabbitai[bot] marked this conversation as resolved.

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Whether you're building monolithic or federated GraphQL architectures, `wgc` pro

### Prerequisites

- [Node.js](https://nodejs.org/) v20 LTS or higher
- [Node.js](https://nodejs.org/) v22+ (>=22.11.0)

### Install via npm

Expand Down
24 changes: 8 additions & 16 deletions pnpm-lock.yaml

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

1 change: 1 addition & 0 deletions studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
"next": "15.5.15",
"next-themes": "^0.2.1",
"posthog-js": "^1.240.6",
"prettier": "catalog:",
"pretty-bytes": "^6.1.1",
"prism-react-renderer": "^2.0.6",
"prismjs": "^1.30.0",
Expand Down
2 changes: 1 addition & 1 deletion studio/src/components/analytics/trace-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { GraphQLSchema } from 'graphql';
import Link from 'next/link';
import { useRouter } from 'next/router';
import parserBabel from 'prettier/plugins/babel';
import * as prettierPluginEstree from 'prettier/plugins/estree';
import prettierPluginEstree from 'prettier/plugins/estree';
import graphQLPlugin from 'prettier/plugins/graphql';
import * as prettier from 'prettier/standalone';
import { useContext, useEffect, useState } from 'react';
Expand Down
Loading