From 0ea7b59be93ca6af538052d54872bd95c3513fe2 Mon Sep 17 00:00:00 2001 From: timdeschryver <28659384+timdeschryver@users.noreply.github.com> Date: Wed, 4 Nov 2020 19:15:18 +0100 Subject: [PATCH] ci: run on multiple node and os versions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3fd8735..533b8363 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,11 @@ on: pull_request jobs: build_and_test: - runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x] - + os: [ubuntu-latest, windows-latest] + node: [12, 14] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: use Node.js ${{ matrix.node-version }}