From e2124ecd6a2aa035d0b1d216b2a1c2e8741ff1a7 Mon Sep 17 00:00:00 2001 From: Kelly Selden Date: Tue, 24 Dec 2019 16:15:00 +0000 Subject: [PATCH 1/2] split appveyor job --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 63e017f6e..f00355ddc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,9 @@ environment: matrix: - nodejs_version: "10" + TEST_COMMAND: "test:bin" + - nodejs_version: "10" + TEST_COMMAND: "test:command" DEBUG: "ember-cli-update,boilerplate-update,git-diff-apply" branches: @@ -31,8 +34,7 @@ install: test_script: - node --version - npm --version - - npm run test:bin - - npm run test:command + - npm run %TEST_COMMAND% # http://help.appveyor.com/discussions/questions/1310-delete-cache cache: From 10e394ab5fae142be34a0d8d0c78b6661edf0a4e Mon Sep 17 00:00:00 2001 From: Kelly Selden Date: Sun, 22 Dec 2019 19:00:58 +0000 Subject: [PATCH 2/2] add windows to github actions --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2bbb06e8..b290f901d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: os: - ubuntu-latest - macos-latest + - windows-latest node: - 10 - '*' @@ -41,6 +42,11 @@ jobs: - os: macos-latest node: 10 test-command: test:fast + - os: windows-latest + node: '*' + - os: windows-latest + node: 10 + test-command: test:fast runs-on: ${{ matrix.os }}