-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
280 changed files
with
14,729 additions
and
9,696 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@1.5.0/schema.json", | ||
"$schema": "https://unpkg.com/@changesets/config@2.0.1/schema.json", | ||
"changelog": ["@changesets/changelog-github", { "repo": "graphql/graphiql" }], | ||
"commit": false, | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"ignore": ["example-*"], | ||
"ignore": [ | ||
"example-graphiql-webpack", | ||
"example-monaco-graphql-nextjs", | ||
"example-monaco-graphql-react-vite", | ||
"example-monaco-graphql-webpack" | ||
], | ||
"updateInternalDependencies": "patch", | ||
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { | ||
"updateInternalDependents": "always" | ||
"onlyUpdatePeerDependentsWhenOutOfRange": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@graphiql/react": minor | ||
"graphiql": minor | ||
--- | ||
|
||
Add webp support to graphiql results image-preview |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
.changeset/ | ||
.changeset/*.md | ||
|
||
# ignore working-group dir markdown so it's easier for people to edit from the UI | ||
working-group/ | ||
packages/codemirror-graphql/src/__tests__/schema-kitchen-sink.graphql | ||
CHANGELOG.md | ||
**/CHANGELOG.md | ||
packages/vscode-graphql-syntax/tests/__fixtures__/ | ||
packages/graphql-language-service-server/src/__tests__/parseDocument.test.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Main Tests | ||
# report coverage on main for codecov baseline | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
install: | ||
name: Install | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: yarn | ||
- name: Cache node modules | ||
id: cache-modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
**/node_modules | ||
key: modules-${{ github.sha }} | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/Cypress | ||
key: cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | ||
- run: yarn install --frozen-lockfile --immutable | ||
|
||
jest: | ||
name: Jest Unit Tests | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
|
||
- id: cache-modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
**/node_modules | ||
key: modules-${{ github.sha }} | ||
- run: yarn test --coverage | ||
- uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: coverage/lcov.info | ||
fail_ci_if_error: true | ||
verbose: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.