This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: add AppVeyor integration for master-only
- Loading branch information
1 parent
21a5db5
commit fc5036f
Showing
4 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
image: Visual Studio 2017 | ||
|
||
# Fix line endings in Windows. (runs before repo cloning) | ||
init: | ||
- git config --global core.autocrlf input | ||
|
||
environment: | ||
matrix: | ||
- nodejs_version: 8 | ||
|
||
# Finish on first failed build | ||
matrix: | ||
fast_finish: true | ||
|
||
platform: | ||
- x64 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
# Disable Visual Studio build and deploy | ||
build: off | ||
deploy: off | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
- yarn install | ||
|
||
test_script: | ||
- node --version | ||
- yarn --version | ||
- yarn prettier:stat | ||
- yarn jest:ci | ||
|
||
cache: | ||
- node_modules | ||
- "%LOCALAPPDATA%/Yarn" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,9 +83,9 @@ | |
"webos" | ||
], | ||
"engines": { | ||
"node": ">=6", | ||
"npm": ">=3", | ||
"yarn": ">=0.22" | ||
"node": ">=8", | ||
"npm": ">=4", | ||
"yarn": ">=0.27" | ||
}, | ||
"author": "Raphael Amorim <[email protected]>", | ||
"license": "MIT", | ||
|