-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added travis and appveyor configs back
- Loading branch information
1 parent
63781fe
commit 7ca1638
Showing
3 changed files
with
43 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
os: | ||
- osx | ||
|
||
language: node_js | ||
node_js: | ||
"12" | ||
|
||
install: | ||
- yarn install | ||
|
||
before_script: | ||
- export NODE_ENV=production | ||
|
||
script: | ||
- yarn tsc:validate | ||
- yarn lint | ||
- yarn bundle | ||
- yarn test | ||
- yarn package:publish |
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,24 @@ | ||
image: Visual Studio 2017 | ||
|
||
environment: | ||
nodejs_version: "12" | ||
|
||
platform: | ||
- x64 | ||
|
||
install: | ||
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) x64 | ||
- node --version | ||
- yarn install | ||
|
||
before_build: | ||
- set NODE_ENV=production | ||
|
||
build_script: | ||
- yarn tsc:validate | ||
- yarn lint | ||
- yarn bundle | ||
- yarn test | ||
- yarn package:publish | ||
|
||
test: off |