Skip to content

Commit

Permalink
feat: remove yarn support
Browse files Browse the repository at this point in the history
  • Loading branch information
avdeev committed Jun 1, 2017
1 parent 1a578d8 commit 5451cf9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4,244 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js

node_js:
- 8
- 7
- 6
- 5

script:
- npm run test
Expand All @@ -12,6 +12,5 @@ script:
after_success: 'npm run coveralls'

cache:
yarn: true
directories:
- node_modules
10 changes: 4 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ environment:

matrix:
# Node versions to run
- nodejs_version: 8
- nodejs_version: 7
- nodejs_version: 6
- nodejs_version: 5

# Fix line endings in Windows. (runs before repo cloning)
init:
Expand All @@ -23,8 +23,7 @@ init:
install:
# Install the latest stable version of Node
- ps: Install-Product node $env:nodejs_version
- set PATH=%APPDATA%\yarn;%PATH%
- yarn
- npm install

# Disable automatic builds
build: off
Expand All @@ -34,12 +33,11 @@ test_script:
# Output debugging info
- node --version
# run tests and run build
- yarn run test
- yarn run build
- npm run test
- npm run build

# Cache node_modules for faster builds
cache:
- "%LOCALAPPDATA%\\Yarn"
- node_modules -> package.json

# remove, as appveyor doesn't support secure variables on pr builds
Expand Down
Loading

0 comments on commit 5451cf9

Please sign in to comment.