typedb / typedb

TypeDB: the power of programming, in your database
https://typedb.com
Mozilla Public License 2.0
3.8k stars 337 forks source link

Update Grakn dependency in client-nodejs #4895

Closed lolski closed 5 years ago

lolski commented 5 years ago

This ticket should be done after https://github.com/graknlabs/grakn/issues/4894

We've already done something similar for docs, therefore the job should be somewhat alike:

jobs:
  client-nodejs-update:
    machine: true
    steps:
      - checkout
      - run:
          name: Sync client-nodejs/development to the latest Grakn version
          command: |
            mkdir docs
            cd docs
            python ../.circleci/client-nodejs-update.py

...

workflows:
  ci:
    jobs:

      ...

      # sync client-nodejs/development to the latest grakn version
      - client-nodejs-update:
          filters:
            branches:
              only: master
          requires:
              ...
lolski commented 5 years ago

This issue has been merged into https://github.com/graknlabs/grakn/issues/4890