Skip to content

Commit

Permalink
#2 build package and publish to github package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
0x6a77 committed Jan 20, 2020
1 parent 06be553 commit 237a169
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions client/grpc-web/.circleci/config.yml
@@ -0,0 +1,69 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check {{ '/2.0/language-javascript/' | docs_url }} for more details
#
version: 2

defaults: &defaults
working_directory: ~/improbable-grpc-web/client/grpc-web
docker:
- image: circleci/node:13.6.0

jobs:
test:
<<: *defaults
steps:
- checkout
path: ~/improbable-grpc-web

- 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: Run tests
command: npm test

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

- persist_to_workspace:
root: ~/repo
paths: .
deploy:
<<: *defaults
steps:
- attach_workspace:
at: ~/improbable-grpc-web/client/grpc-web
- run:
name: Authenticate with registry
# command: echo "//registry.npmjs.org/:_authToken=$GIT_TOKEN" > ~/repo/.npmrc
command: |
echo "@addrobots:registry=https://npm.pkg.github.com/" > ~/.npmrc
echo "//npm.pkg.github.com/:_authToken=\"$GITHUB_AUTH_TOKEN\"" >> ~/.npmrc
npm set @addrobots:registry https://npm.pkg.github.com
- run:
name: Publish package
command: npm publish

workflows:
version: 2
test-deploy:
jobs:
- test:
filters:
tags:
only: /^v.*/
- deploy:
requires:
- test
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/

0 comments on commit 237a169

Please sign in to comment.