Skip to content

Commit

Permalink
Adding CI/CD files and badge
Browse files Browse the repository at this point in the history
  • Loading branch information
drewry committed Sep 25, 2018
1 parent e31006a commit 8be03c3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,19 @@
image: node:8.12

services:
- docker:dind

variables:
DOCKER_DRIVER: overlay2
DOCKER_HOST: tcp://localhost:2375

stages:
- test

test:
stage: test
script:
- npm install
- npm audit
- npm test

8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "8"

script:
- npm install
- npm audit
- npm test
2 changes: 2 additions & 0 deletions README.md
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/CDCgov/fdns-ui-react.svg?branch=master)](https://travis-ci.org/CDCgov/fdns-ui-react)

# FDNS User Interface Library for React
This repository contains a front-end library built in React. The library is designed to help developers efficiently build user interfaces on top of the Foundation Services. The library is **pre-release software** and being made public to gain feedback from the open source community.

Expand Down

0 comments on commit 8be03c3

Please sign in to comment.