-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (21 loc) · 678 Bytes
/
appveyor.yml
File metadata and controls
28 lines (21 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# This file: cloned from https://github.com/gruntjs/grunt/blob/master/appveyor.yml
# Build version format
version: "{build}"
# Test against this version of Node.js
environment:
nodejs_version: "Stable"
# https://github.com/DefinitelyTyped/tsd#tsdrc
# Token has no scope (read-only access to public information)
build: off
clone_depth: 10
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- ps: $env:path = $env:appdata + "\npm;" + $env:path
- npm install && npm run build
cache: node_modules