Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit b92bdfe

Browse files
dryajovdaviddias
authored andcommitted
feat: adding appveyor support (#1054)
1 parent dce6a49 commit b92bdfe

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

appveyor.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: "{build}"
2+
3+
environment:
4+
matrix:
5+
- nodejs_version: "6"
6+
- nodejs_version: "8"
7+
8+
matrix:
9+
fast_finish: true
10+
11+
install:
12+
# Install Node.js
13+
- ps: Install-Product node $env:nodejs_version
14+
15+
# Upgrade npm
16+
- npm install -g npm
17+
18+
# Output our current versions for debugging
19+
- node --version
20+
- npm --version
21+
22+
# Install our package dependencies
23+
- npm install
24+
25+
test_script:
26+
- npm run test:node
27+
28+
build: off

0 commit comments

Comments
 (0)