From f3b1d8068f8677cf0461159bba6658920c7dbfbf Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 30 Jul 2020 10:45:51 +0100 Subject: GitHub Actions: add a win32 bash workflow Update the matrix to have two Windows workflows: one running PowerShell and one running bash. --- .github/workflows/ci.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb74c2849..53d6e1d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,21 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.x, 12.x, 14.x] - os: [ubuntu-latest, windows-latest, macOS-latest] - - runs-on: ${{ matrix.os }} + node-version: [6.x, 8.x, 10.x, 12.x] + platform: + - os: ubuntu-latest + shell: bash + - os: macos-latest + shell: bash + - os: windows-latest + shell: bash + - os: windows-latest + shell: powershell + + runs-on: ${{ matrix.platform.os }} + defaults: + run: + shell: ${{ matrix.platform.shell }} steps: # Checkout the npm/cli repo -- cgit v1.2.3