From 98fb51d571ca2736f55184b6e1998621dcdfdba5 Mon Sep 17 00:00:00 2001 From: Luis Campos Date: Fri, 10 May 2019 12:33:49 -0700 Subject: [PATCH 1/5] Appveyor config --- .appveyor | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .appveyor diff --git a/.appveyor b/.appveyor new file mode 100644 index 0000000..f2eff67 --- /dev/null +++ b/.appveyor @@ -0,0 +1,26 @@ +# version format +version: '{branch}-{build}' + +# Do not build on tags (GitHub and BitBucket) +skip_tags: true + +# Limit the number of last commits when cloning the repo/branch +clone_depth: 1 + +# Do not build feature branch with open Pull Requests +skip_branch_with_pr: true + +# Build on x64 only +platform: x64 + +build: off + +install: + - ps: Install-Product node 10.12.18 x64 + - npm install + - npm run lint + +test_script: + - node --version + - npm --version + - npm run test \ No newline at end of file From e6695c568a8f322b896769b6b162008077289589 Mon Sep 17 00:00:00 2001 From: Luis Campos Date: Fri, 10 May 2019 12:42:00 -0700 Subject: [PATCH 2/5] tweak appveyor config and add vscode configs --- .appveyor | 6 +++--- .vscode/extensions.json | 5 +++++ .vscode/settings.json | 6 ++++++ 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.appveyor b/.appveyor index f2eff67..e56b615 100644 --- a/.appveyor +++ b/.appveyor @@ -13,13 +13,13 @@ skip_branch_with_pr: true # Build on x64 only platform: x64 -build: off - install: - ps: Install-Product node 10.12.18 x64 - - npm install + - appveyor-retry npm install - npm run lint +build: off + test_script: - node --version - npm --version diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..dbd96bc --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "eg2.tslint" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0e734d9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "search.exclude": { + "**/node_modules": true, + "lib": true + } +} \ No newline at end of file From 5610dfc55837465a4f01c0b83516b1e247f2625b Mon Sep 17 00:00:00 2001 From: Luis Campos Date: Fri, 10 May 2019 12:44:11 -0700 Subject: [PATCH 3/5] Update config filename --- .appveyor => .appveyor.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .appveyor => .appveyor.yml (100%) diff --git a/.appveyor b/.appveyor.yml similarity index 100% rename from .appveyor rename to .appveyor.yml From 40333cb93dc6298942cafc339902e91bc34125d2 Mon Sep 17 00:00:00 2001 From: Luis Campos Date: Fri, 10 May 2019 12:48:00 -0700 Subject: [PATCH 4/5] Update node version --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index e56b615..57b64dc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,7 +14,7 @@ skip_branch_with_pr: true platform: x64 install: - - ps: Install-Product node 10.12.18 x64 + - ps: Install-Product node 10 x64 - appveyor-retry npm install - npm run lint From 871dce61b73a516558c1422af492b968f9d0b4d2 Mon Sep 17 00:00:00 2001 From: Luis Campos Date: Fri, 10 May 2019 12:50:40 -0700 Subject: [PATCH 5/5] Comment out lint step --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 57b64dc..e20afc5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -16,7 +16,7 @@ platform: x64 install: - ps: Install-Product node 10 x64 - appveyor-retry npm install - - npm run lint + #- npm run lint build: off