Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

circleci v2 #196

Merged
merged 1 commit into from Aug 31, 2018
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 34 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,34 @@
version: 2
jobs:
build:
working_directory: ~/uport-connect
docker:
- image: circleci/node:8-browsers
steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- dependencies-cache-{{ checksum "package.json" }}

- run:
name: install-dependencies
command: yarn

- run:
name: test
command: npm run karma-CI

- run:
name: code-coverage
command: bash <(curl -s https://codecov.io/bash)

- run:
name: dist
command: npm run build-dist && npm run build-dist-prod

- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
9 changes: 0 additions & 9 deletions circle.yml

This file was deleted.