Skip to content

Commit

Permalink
GitHub Actions: add a win32 bash workflow
Browse files Browse the repository at this point in the history
Update the matrix to have two Windows workflows: one running PowerShell
and one running bash.
  • Loading branch information
ethomson authored and isaacs committed Aug 4, 2020
1 parent 43eca4a commit e36b55e
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -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]

This comment has been minimized.

Copy link
@claudiahdz

claudiahdz Aug 4, 2020

Contributor

Gotta delete 6 and 8 to have tests passing again.

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
Expand Down

0 comments on commit e36b55e

Please sign in to comment.