-
-
Notifications
You must be signed in to change notification settings - Fork 820
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge graphql-tools-fork into v5 (#1307)
- Loading branch information
1 parent
91dbf2e
commit ec9e16e
Showing
184 changed files
with
15,872 additions
and
6,284 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
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 |
---|---|---|
|
@@ -11,3 +11,6 @@ package-lock.json | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.eslintcache | ||
.nyc_output |
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,18 +1,38 @@ | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- "13" | ||
- "12" | ||
- "10" | ||
|
||
env: | ||
- GRAPHQL_VERSION='0.12' | ||
- GRAPHQL_VERSION='0.13' | ||
- GRAPHQL_VERSION='14.0' | ||
- GRAPHQL_VERSION='14.1' | ||
- GRAPHQL_VERSION='14.2' | ||
- GRAPHQL_VERSION='14.3' | ||
- GRAPHQL_VERSION='14.4' | ||
- GRAPHQL_VERSION='14.5' | ||
- GRAPHQL_VERSION='14.6' | ||
- GRAPHQL_VERSION='rc' | ||
|
||
install: | ||
- npm config set spin=false | ||
- npm install -g coveralls | ||
- npm install | ||
|
||
script: | ||
- npm test | ||
- npm run lint | ||
- node_version=$(node -v); if [[ ${node_version:1:2} == "13" && $GRAPHQL_VERSION == "14.6" ]]; then | ||
npm run lint; | ||
fi | ||
- node_version=$(node -v); if [[ ${node_version:1:2} == "13" && $GRAPHQL_VERSION == "14.6" ]]; then | ||
npm run prettier:check; | ||
fi | ||
- npm run compile | ||
- npm install graphql@$GRAPHQL_VERSION | ||
- npm run testonly:cover | ||
|
||
after_success: | ||
- npm run coverage | ||
- coveralls < ./coverage/lcov.info || true # if coveralls doesn't have it covered | ||
|
||
# Allow Travis tests to run in containers. | ||
sudo: false |
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
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
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
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.