Skip to content
This repository has been archived by the owner on Jul 4, 2022. It is now read-only.

Commit

Permalink
Add initial circleci config (#8)
Browse files Browse the repository at this point in the history
* Add initial circleci config
* Add typescript to dev deps
  • Loading branch information
jordy25519 authored Jan 28, 2020
1 parent aa2b078 commit a9c013b
Show file tree
Hide file tree
Showing 4 changed files with 2,944 additions and 93 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2.0
jobs:
build:
docker:
- image: circleci/node:10.13.0
steps:
- checkout
- run:
name: install
command: npm install --only=dev
- run:
name: lint
command: npx eslint --fix-dry-run 'types/*'
# TODO: Add integration tests
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# plug-api-types
[![CircleCI](https://circleci.com/gh/plugblockchain/plug-api-types.svg?style=svg)](https://circleci.com/gh/plugblockchain/plug-api-types)

Type definitions for the Plug blockchain runtime.
These should be injected into an API session from `@polkadot/api` in order to connect and transact with
a Plug chain.
Expand Down
Loading

0 comments on commit a9c013b

Please sign in to comment.