Skip to content

Commit 2d2595e

Browse files
committed
add travis ci
1 parent 04e82ea commit 2d2595e

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: node_js
2+
3+
node_js:
4+
- "6"
5+
6+
branches:
7+
only:
8+
- master
9+
10+
cache:
11+
- directories:
12+
- node_modules
13+
14+
install:
15+
- npm install
16+
17+
script: npm test
18+
19+
notifications:
20+
email: false

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## vmath
22

3+
[![Travis CI Status](https://travis-ci.org/gamedev-js/vmath.svg?branch=master)](https://travis-ci.org/gamedev-js/vmath)
4+
35
Yet another gl-matrix but smaller (without SIMD) and faster (use Hidden class instead of Float32Array).
46

57
## Why?

0 commit comments

Comments
 (0)