Skip to content

Commit 28e4a56

Browse files
author
Steven Edouard
committed
feat(appveyor) - add appveyor build
1 parent 27d5848 commit 28e4a56

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Test against this version of Node.js
2+
environment:
3+
nodejs_version: "4.1.2"
4+
5+
# Install scripts. (runs after repo cloning)
6+
install:
7+
# Get the latest stable version of Node.js or io.js
8+
- ps: Install-Product node $env:nodejs_version
9+
# install modules
10+
- npm install
11+
- npm install grunt-cli -g
12+
- npm install mocha -g
13+
14+
# Post-install test scripts.
15+
test_script:
16+
# Output useful info for debugging.
17+
- node --version
18+
- npm --version
19+
# run tests
20+
- npm test
21+
22+
# Don't actually build.
23+
build: off

test/uac.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
// });
4242
// });
4343
// });
44-
>>>>>>> fix(lib) - Object-like Key api + Fix Key Value Test
44+

0 commit comments

Comments
 (0)