Skip to content

Commit c75ba99

Browse files
committed
try
1 parent e01bb25 commit c75ba99

File tree

2 files changed

+102
-104
lines changed

2 files changed

+102
-104
lines changed

.github/workflows/pr.yml

Lines changed: 102 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -52,113 +52,113 @@ jobs:
5252
key: build-${{ github.sha }}
5353
path: ${{ env.BUILD-CACHE-LIST }}
5454

55-
cspell:
56-
name: CSpell
57-
runs-on: ubuntu-latest
58-
needs: [install]
59-
steps:
60-
- uses: actions/checkout@v4
61-
- uses: actions/setup-node@v4
62-
- id: cache-modules
63-
uses: actions/cache@v4
64-
with:
65-
path: |
66-
**/node_modules
67-
key: modules-${{ github.sha }}
68-
- run: yarn lint-cspell
55+
# cspell:
56+
# name: CSpell
57+
# runs-on: ubuntu-latest
58+
# needs: [install]
59+
# steps:
60+
# - uses: actions/checkout@v4
61+
# - uses: actions/setup-node@v4
62+
# - id: cache-modules
63+
# uses: actions/cache@v4
64+
# with:
65+
# path: |
66+
# **/node_modules
67+
# key: modules-${{ github.sha }}
68+
# - run: yarn lint-cspell
6969

70-
prettier:
71-
name: Prettier
72-
runs-on: ubuntu-latest
73-
needs: [install]
74-
steps:
75-
- uses: actions/checkout@v4
76-
- uses: actions/setup-node@v4
77-
- id: cache-modules
78-
uses: actions/cache@v4
79-
with:
80-
path: |
81-
**/node_modules
82-
key: modules-${{ github.sha }}
83-
- run: yarn pretty-check
70+
# prettier:
71+
# name: Prettier
72+
# runs-on: ubuntu-latest
73+
# needs: [install]
74+
# steps:
75+
# - uses: actions/checkout@v4
76+
# - uses: actions/setup-node@v4
77+
# - id: cache-modules
78+
# uses: actions/cache@v4
79+
# with:
80+
# path: |
81+
# **/node_modules
82+
# key: modules-${{ github.sha }}
83+
# - run: yarn pretty-check
8484

85-
jest:
86-
name: Jest Unit & Integration Tests
87-
runs-on: ubuntu-latest
88-
needs: [install]
89-
steps:
90-
- uses: actions/checkout@v4
91-
- uses: actions/setup-node@v4
92-
- id: cache-modules
93-
uses: actions/cache@v4
94-
with:
95-
path: |
96-
**/node_modules
97-
key: modules-${{ github.sha }}
98-
- run: yarn test --coverage
99-
- uses: codecov/codecov-action@v4
100-
with:
101-
token: ${{ secrets.CODECOV_TOKEN }}
102-
files: coverage/lcov.info
103-
fail_ci_if_error: true
104-
verbose: true
85+
# jest:
86+
# name: Jest Unit & Integration Tests
87+
# runs-on: ubuntu-latest
88+
# needs: [install]
89+
# steps:
90+
# - uses: actions/checkout@v4
91+
# - uses: actions/setup-node@v4
92+
# - id: cache-modules
93+
# uses: actions/cache@v4
94+
# with:
95+
# path: |
96+
# **/node_modules
97+
# key: modules-${{ github.sha }}
98+
# - run: yarn test --coverage
99+
# - uses: codecov/codecov-action@v4
100+
# with:
101+
# token: ${{ secrets.CODECOV_TOKEN }}
102+
# files: coverage/lcov.info
103+
# fail_ci_if_error: true
104+
# verbose: true
105105

106-
vitest:
107-
name: Vitest Unit Tests
108-
runs-on: ubuntu-latest
109-
needs: [build]
110-
steps:
111-
- uses: actions/checkout@v4
112-
- uses: actions/setup-node@v4
113-
- id: cache-modules
114-
uses: actions/cache@v4
115-
with:
116-
path: |
117-
**/node_modules
118-
key: modules-${{ github.sha }}
119-
- uses: actions/cache@v4
120-
with:
121-
key: build-${{ github.sha }}
122-
path: ${{ env.BUILD-CACHE-LIST }}
123-
- run: yarn vitest
106+
# vitest:
107+
# name: Vitest Unit Tests
108+
# runs-on: ubuntu-latest
109+
# needs: [build]
110+
# steps:
111+
# - uses: actions/checkout@v4
112+
# - uses: actions/setup-node@v4
113+
# - id: cache-modules
114+
# uses: actions/cache@v4
115+
# with:
116+
# path: |
117+
# **/node_modules
118+
# key: modules-${{ github.sha }}
119+
# - uses: actions/cache@v4
120+
# with:
121+
# key: build-${{ github.sha }}
122+
# path: ${{ env.BUILD-CACHE-LIST }}
123+
# - run: yarn vitest
124124

125-
eslint:
126-
name: ESLint
127-
runs-on: ubuntu-latest
128-
needs: [build]
129-
steps:
130-
- uses: actions/checkout@v4
131-
- uses: actions/setup-node@v4
132-
- id: cache-modules
133-
uses: actions/cache@v4
134-
with:
135-
path: |
136-
**/node_modules
137-
key: modules-${{ github.sha }}
138-
- uses: actions/cache@v4
139-
with:
140-
key: build-${{ github.sha }}
141-
path: ${{ env.BUILD-CACHE-LIST }}
142-
- run: yarn eslint
125+
# eslint:
126+
# name: ESLint
127+
# runs-on: ubuntu-latest
128+
# needs: [build]
129+
# steps:
130+
# - uses: actions/checkout@v4
131+
# - uses: actions/setup-node@v4
132+
# - id: cache-modules
133+
# uses: actions/cache@v4
134+
# with:
135+
# path: |
136+
# **/node_modules
137+
# key: modules-${{ github.sha }}
138+
# - uses: actions/cache@v4
139+
# with:
140+
# key: build-${{ github.sha }}
141+
# path: ${{ env.BUILD-CACHE-LIST }}
142+
# - run: yarn eslint
143143

144-
types-check:
145-
name: Types Check
146-
runs-on: ubuntu-latest
147-
needs: [build]
148-
steps:
149-
- uses: actions/checkout@v4
150-
- uses: actions/setup-node@v4
151-
- id: cache-modules
152-
uses: actions/cache@v4
153-
with:
154-
path: |
155-
**/node_modules
156-
key: modules-${{ github.sha }}
157-
- uses: actions/cache@v4
158-
with:
159-
key: build-${{ github.sha }}
160-
path: ${{ env.BUILD-CACHE-LIST }}
161-
- run: yarn types:check
144+
# types-check:
145+
# name: Types Check
146+
# runs-on: ubuntu-latest
147+
# needs: [build]
148+
# steps:
149+
# - uses: actions/checkout@v4
150+
# - uses: actions/setup-node@v4
151+
# - id: cache-modules
152+
# uses: actions/cache@v4
153+
# with:
154+
# path: |
155+
# **/node_modules
156+
# key: modules-${{ github.sha }}
157+
# - uses: actions/cache@v4
158+
# with:
159+
# key: build-${{ github.sha }}
160+
# path: ${{ env.BUILD-CACHE-LIST }}
161+
# - run: yarn types:check
162162

163163
e2e:
164164
name: Cypress

packages/graphiql/cypress/e2e/prettify.cy.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ describeOrSkip('GraphiQL Prettify', () => {
3838

3939
it('should work while click on key map short cut', () => {
4040
cy.visit(`/?query=${rawQuery}&onPrettifyQuery=true`);
41-
// Wait diagnostic error
42-
cy.get('.squiggly-error', { timeout: 10_000 });
4341
cy.get('.graphiql-query-editor .monaco-editor').type('{shift+ctrl+p}', {
4442
force: true,
4543
});

0 commit comments

Comments
 (0)