Skip to content

Commit d80d21b

Browse files
committed
minor #45 Update appveyor to use yarn instead of npm and auto fix windows line … (DaRamirezSoto)
This PR was squashed before being merged into the master branch (closes #45). Discussion ---------- Update appveyor to use yarn instead of npm and auto fix windows line … - Added fix to force windows line endings - Added yarn to cache - Replaced npm with yarn for install - Removed npm version check Commits ------- 72fb23f Remove autocrlf from AppVeyor f388286 Update appveyor to use yarn instead of npm and auto fix windows line endings
2 parents 5c2157e + 72fb23f commit d80d21b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
cache:
22
- node_modules
3+
- "%LOCALAPPDATA%\\Yarn"
34

45
environment:
5-
matrix:
6-
- nodejs_version: "6"
6+
nodejs_version: "6"
77

88
platform:
99
- x86
1010
- x64
1111

1212
install:
1313
- ps: Install-Product node $env:nodejs_version $env:platform
14-
- npm install
14+
- yarn
1515

1616
test_script:
1717
- node --version
18-
- npm --version
19-
- npm run test
18+
- yarn --version
19+
- yarn run test
2020

2121
build: off

0 commit comments

Comments
 (0)