From d3e1c4cebfe58e7ff77df53ef618d906283407be Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 30 Jul 2020 10:45:51 +0100 Subject: [PATCH 1/2] 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 | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acffa4fbbd53b..70dacbe62fcd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,20 @@ jobs: fail-fast: false matrix: node-version: [6.x, 8.x, 10.x, 12.x] - os: [ubuntu-latest, windows-latest, macOS-latest] - - runs-on: ${{ matrix.os }} + 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 From 2b856e485b03c4c8d8138c832ccbfe8f786fc490 Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Fri, 31 Jul 2020 01:22:52 -0400 Subject: [PATCH 2/2] chore: removed .travis.yml file --- .travis.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9fb0d51133692..0000000000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -# need to declare the language as well as the matrix below -language: node_js - -os: - - windows - -node_js: - - 12 - - 10 - - 8 - - 6 - -env: "DEPLOY_VERSION=testing" - -install: - - "node . install" - -script: - - "node . run tap -- \"test/tap/*.js\" -t600 -Rclassic -c"