Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 242e5a0

Browse files
authored
ci(appveyor): use npm (#456)
1 parent 15579a1 commit 242e5a0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

appveyor.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,22 @@ skip_branch_with_pr: true
77
skip_tags: true
88

99
cache:
10-
- '%LOCALAPPDATA%\Yarn'
10+
- '%AppData%/npm-cache'
1111

1212
environment:
1313
NODEJS_VERSION: '8.9.4'
1414

1515
install:
1616
- ps: Install-Product node $env:NODEJS_VERSION
17-
- yarn install
17+
- npm install -g npm@6.0.0
18+
- npm ci
1819

1920
build_script:
20-
- yarn run build
21+
- npm run build
2122

2223
test_script:
23-
- yarn run lint
24-
- yarn run cover
24+
- npm run lint
25+
- npm run cover
2526

2627
after_test:
2728
- ps: |

0 commit comments

Comments
 (0)