Skip to content

Commit 176dff0

Browse files
committed
travis.
1 parent 392862b commit 176dff0

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
node_js:
3+
- "12"
4+
- "14"
5+
- "16"
6+
7+
install:
8+
- npm install
9+
10+
script:
11+
- npm run build
12+
- npm run test:single
13+
- npm run eslint
14+
- npm run prettier

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Sequential Workflow Designer
44

5+
[![Build Status](https://app.travis-ci.com/b4rtaz/sequential-workflow-designer.svg?branch=main)](https://app.travis-ci.com/b4rtaz/sequential-workflow-designer) [![License: MIT](https://img.shields.io/github/license/mashape/apistatus.svg)](/LICENSE) [![Twitter: b4rtaz](https://img.shields.io/twitter/follow/b4rtaz.svg?style=social)](https://twitter.com/b4rtaz)
6+
57
Sequential workflow designer with no dependencies for web. It's written in pure TypeScript and uses SVG for rendering. This designer is not associated with any workflow engine. It's full generic. You may create any kind application by this, from graphical programming languages to workflow designers.
68

79
Features:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"start": "rollup -c --watch",
1919
"build": "rollup -c",
2020
"test": "karma start",
21+
"test:single": "karma start --single-run",
2122
"eslint": "eslint ./src --ext .ts",
2223
"prettier": "prettier --check ./src",
2324
"prettier:fix": "prettier --write ./src"

0 commit comments

Comments
 (0)