Skip to content

Commit dd86453

Browse files
committed
chore: tweak ci for cypress
1 parent 86d7fb8 commit dd86453

File tree

4 files changed

+346
-339
lines changed

4 files changed

+346
-339
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"mkdirp": "^1.0.3",
109109
"mocha": "7.0.1",
110110
"prettier": "^1.18.2",
111-
"rimraf": "^3.0.1",
111+
"rimraf": "^3.0.2",
112112
"ts-jest": "^25.2.0",
113113
"typedoc": "^0.15.6",
114114
"typescript": "^3.6.3"

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)