Skip to content
This repository has been archived by the owner on Aug 13, 2019. It is now read-only.

Commit

Permalink
Enable Windows builds on AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Jun 11, 2016
1 parent 16f5c52 commit d318ba8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
@@ -1,6 +1,8 @@
## Update Package Dependencies package [![Build Status](https://travis-ci.org/atom/update-package-dependencies.svg?branch=master)](https://travis-ci.org/atom/update-package-dependencies)
## Update Package Dependencies package
[![OS X Build Status](https://travis-ci.org/atom/update-package-dependencies.svg?branch=master)](https://travis-ci.org/atom/update-package-dependencies) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/5xqtoc3xk1e7lt2y/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/update-package-dependencies/branch/master) [![Dependency Status](https://david-dm.org/atom/update-package-dependencies
.svg)](https://david-dm.org/atom/update-package-dependencies
)

Runs `apm install` from the current project's directory. This will install all
dependencies referenced in the `package.json` file to the `node_modules` folder.
Runs `apm install` from the current project's directory. This will install all dependencies referenced in the `package.json` file to the `node_modules` folder.

This should only be used in projects that are Atom packages.
17 changes: 17 additions & 0 deletions appveyor.yml
@@ -0,0 +1,17 @@
version: "{build}"

os: Windows Server 2012 R2

install:
- choco install atom -y
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm clean"
- "%LOCALAPPDATA%/atom/bin/apm install"

build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd"

test: off

deploy: off

0 comments on commit d318ba8

Please sign in to comment.