Skip to content

Commit 821a0c2

Browse files
committed
chore: tweak ci for cypress
1 parent 7c1b5c5 commit 821a0c2

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ name: Node.JS CI
22
on: [push]
33
jobs:
44
test:
5-
runs-on: ubuntu-latest
65
name: lint & test
6+
runs-on: ubuntu-16.04
77
steps:
88
- uses: actions/checkout@v1
99
- uses: bahmutov/npm-install@v1
1010
- run: yarn ci
1111
e2e:
12+
name: cypress
1213
runs-on: ubuntu-16.04
1314
steps:
1415
- uses: actions/checkout@v1

]

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
chore: tweak ci for cypress
2+
3+
# Please enter the commit message for your changes. Lines starting
4+
# with '#' will be ignored, and an empty message aborts the commit.
5+
#
6+
# Date: Tue Jan 28 15:09:12 2020 -0600
7+
#
8+
# On branch symbol-support
9+
# Your branch is up to date with 'origin/symbol-support'.
10+
#
11+
# Changes to be committed:
12+
# modified: .github/workflows/ci.yml
13+
#
14+
# ------------------------ >8 ------------------------
15+
# Do not modify or remove the line above.
16+
# Everything below it will be ignored.
17+
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
18+
index 6cad64f..3831a0c 100644
19+
--- a/.github/workflows/ci.yml
20+
+++ b/.github/workflows/ci.yml
21+
@@ -9,9 +9,10 @@ jobs:
22+
- uses: bahmutov/npm-install@v1
23+
- run: yarn ci
24+
e2e:
25+
- runs-on: ubuntu-latest
26+
+ runs-on: ubuntu-16.04
27+
name: cypress
28+
steps:
29+
- uses: actions/checkout@v1
30+
- uses: bahmutov/npm-install@v1
31+
+ - uses: cypress-io/github-action@v1
32+
- run: yarn ci-e2e

packages/graphql-language-service-interface/src/GraphQLLanguageService.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
DocumentNode,
1212
FragmentSpreadNode,
1313
FragmentDefinitionNode,
14-
OperationDefinitionNode,
1514
TypeDefinitionNode,
1615
NamedTypeNode,
1716
ValidationRule,
@@ -33,7 +32,6 @@ import {
3332
// import { Position } from 'graphql-language-service-utils';
3433
import {
3534
Hover,
36-
DiagnosticSeverity,
3735
SymbolInformation,
3836
SymbolKind,
3937
} from 'vscode-languageserver-types';

0 commit comments

Comments
 (0)