Skip to content

Commit beeceb1

Browse files
authored
Update Graphql Version (#138)
* Update Graphql Version * Support Graphql 15 * Run tests * Update action * Update action folder
1 parent 162b069 commit beeceb1

File tree

8 files changed

+198
-78
lines changed

8 files changed

+198
-78
lines changed

.github/workflows/run-tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Run tests
2+
3+
on: [push]
4+
5+
jobs:
6+
tests:
7+
name: Run tests
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
13+
- name: Install dependencies
14+
run: yarn install
15+
16+
- name: Run tests
17+
run: npm test

package-lock.json

Lines changed: 144 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@
2929
},
3030
"license": "MIT",
3131
"dependencies": {
32-
"easygraphql-mock": "^0.1.15",
33-
"easygraphql-parser": "^0.0.12",
34-
"graphql": "^14.4.0",
35-
"graphql-tools": "^4.0.4",
32+
"easygraphql-mock": "^0.1.17",
33+
"easygraphql-parser": "^0.0.15",
34+
"graphql-tools": "^4.0.8",
3635
"lodash.isempty": "^4.4.0",
3736
"lodash.isobject": "^3.0.2",
3837
"merge-graphql-schemas": "^1.5.8"
3938
},
4039
"devDependencies": {
4140
"chai": "^4.1.2",
4241
"coveralls": "^3.0.2",
42+
"graphql": "^15.3.0",
4343
"graphql-tag": "^2.9.2",
4444
"husky": "^3.0.0",
4545
"mocha": "^6.1.4",
@@ -48,6 +48,6 @@
4848
"standard": "^12.0.0"
4949
},
5050
"peerDependencies": {
51-
"graphql": "^0.13.0 || ^14.0.0"
51+
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
5252
}
53-
}
53+
}

0 commit comments

Comments
 (0)