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

ci(appveyor): use npm #456

Merged
merged 1 commit into from
May 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@ skip_branch_with_pr: true
skip_tags: true

cache:
- '%LOCALAPPDATA%\Yarn'
- '%AppData%/npm-cache'

environment:
NODEJS_VERSION: '8.9.4'

install:
- ps: Install-Product node $env:NODEJS_VERSION
- yarn install
- npm install -g npm@6.0.0
- npm ci

build_script:
- yarn run build
- npm run build

test_script:
- yarn run lint
- yarn run cover
- npm run lint
- npm run cover

after_test:
- ps: |
Expand Down