UNPKG

graphql-static-binding

Version:
26 lines 675 B
version: 2 jobs: build: working_directory: ~/graphql-cli-prepare docker: - image: circleci/node:latest steps: - checkout - run: name: update-npm command: 'sudo npm install -g yarn@latest' - restore_cache: key: dependency-cache-{{ checksum "package.json" }} - run: name: install-yarn command: yarn install - save_cache: key: dependency-cache-{{ checksum "package.json" }} paths: - ./node_modules - run: name: test command: yarn test - run: name: release command: yarn semantic-release || true