Skip to content

Commit bb579dc

Browse files
authored
Add travis build
1 parent c06904b commit bb579dc

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
sudo: required
3+
dist: trusty
4+
node_js: stable
5+
install:
6+
- npm install -g bower
7+
- npm install
8+
script:
9+
- bower install --production
10+
- npm run -s build
11+
- bower install
12+
- npm run -s example:build

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
purescript-mote-runner
2-
==
1+
# purescript-mote-runner
2+
3+
[![Latest release](http://img.shields.io/github/release/kRITZCREEK/purescript-mote-runner.svg)](https://github.com/kRITZCREEK/purescript-mote-runner/releases)
4+
[![Build status](https://travis-ci.org/kRITZCREEK/purescript-mote-runner.svg?branch=master)](https://travis-ci.org/kRITZCREEK/purescript-mote-runner)
35

46
Creates a CLI wrapper for test suites written with the `purescript-mote` DSL,
57
that allows to selectively run tests.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
22
"name": "purescript-mote-runner",
33
"scripts": {
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build -- --censor-lib --strict",
46
"example:build": "pulp build -I example",
57
"example:run": "node example/run.js"
68
},
79
"dependencies": {
8-
"pulp": "^12.2.0",
9-
"purescript": "^0.12.0"
10+
"pulp": "^12.3.0",
11+
"purescript": "^0.12.0",
12+
"purescript-psa": "^0.7.3",
13+
"rimraf": "^2.6.2"
1014
}
1115
}

0 commit comments

Comments
 (0)