breadknife
Version:
Simple A/B Testing Library
43 lines (35 loc) • 899 B
YAML
# Javascript Node CircleCI 2.0 configuration file
#
# Check {{ '/2.0/language-javascript/' | docs_url }} for more details
#
version: 2.1
orbs:
codecov: codecov/codecov@1.1.0
defaults:
working_directory: ~/repo
docker:
- image: circleci/node:12.16.1
jobs:
deploy:
<<:
steps:
- checkout
- codecov/upload:
file: "/coverage/"
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc
- run:
name: Publish package
command: npm publish
workflows:
version: 2
deploy:
jobs:
- deploy