Skip to content

Commit 43da245

Browse files
authored
Merge pull request #16 from simonihmig/appveyor
Add appveyor
2 parents 31675e2 + 5d12593 commit 43da245

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# ember-test-helpers-codemod
22

33
[![Build Status](https://travis-ci.org/simonihmig/ember-test-helpers-codemod.svg?branch=master)](https://travis-ci.org/simonihmig/ember-test-helpers-codemod)
4+
[![Build status](https://ci.appveyor.com/api/projects/status/fadn7iu9fl53qb6k/branch/master?svg=true)](https://ci.appveyor.com/project/simonihmig/ember-test-helpers-codemod/branch/master)
45
[![npm version](https://badge.fury.io/js/ember-test-helpers-codemod.svg)](https://badge.fury.io/js/ember-test-helpers-codemod)
56

67
A [jscodeshift](https://github.com/facebook/jscodeshift) based codemod to help migrating your jQuery or

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "4"
4+
- nodejs_version: "6"
5+
- nodejs_version: "8"
6+
7+
# Fix line endings in Windows. (runs before repo cloning)
8+
init:
9+
- git config --global core.autocrlf true
10+
11+
# Install scripts. (runs after repo cloning)
12+
install:
13+
- ps: Install-Product node $env:nodejs_version
14+
- appveyor-retry yarn
15+
16+
# Post-install test scripts.
17+
test_script:
18+
- node --version
19+
- yarn test
20+
21+
# http://help.appveyor.com/discussions/questions/1310-delete-cache
22+
cache:
23+
- '%LOCALAPPDATA%\Yarn'
24+
25+
# Don't actually build.
26+
build: off

0 commit comments

Comments
 (0)