Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
Apollo Client:
docker:
- image: circleci/node:8
- image: cimg/node:14.17.4

steps:
- checkout
Expand All @@ -18,7 +18,7 @@ jobs:

Apollo Server:
docker:
- image: circleci/node:8
- image: cimg/node:14.17.4

steps:
- checkout
Expand All @@ -31,11 +31,11 @@ jobs:
background: true

- run: sleep 5
- run: cd final/server && npx apollo service:check
- run: cd final/server && npx rover graph introspect http://localhost:4000 | npx rover graph check space-explorer --schema -

- run: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
cd final/server && npx apollo service:push
cd final/server && npx rover graph introspect http://localhost:4000 | npx rover graph publish space-explorer --schema -
fi

workflows:
Expand Down
Loading