From d1d3015c42d35f0b7a7c8810b9fc5e1e202edc11 Mon Sep 17 00:00:00 2001 From: Kelly Selden Date: Sun, 22 Dec 2019 19:00:58 +0000 Subject: [PATCH] add windows to github actions --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d62362a3..f72067327 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,13 +21,12 @@ jobs: - run: npm run lint test: - timeout-minutes: 10 - strategy: matrix: os: - ubuntu-latest - macos-latest + - windows-latest node: - 8 - 13 @@ -41,6 +40,11 @@ jobs: - os: macos-latest node: 8 test-command: test:fast + - os: windows-latest + node: 13 + - os: windows-latest + node: 8 + test-command: test:fast runs-on: ${{ matrix.os }} @@ -55,5 +59,6 @@ jobs: - run: npm ci - run: npm run ${{ matrix.test-command }} + timeout-minutes: 15 env: NODE_LTS: ${{ matrix.node == 8 }}