From 049719987e8c0e79e00a02ecb732ed10c3a555b8 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Sun, 7 Mar 2021 15:55:07 -0500 Subject: [PATCH] Remove testing for multiple platforms. We test the exact same thing on all platforms so there is no need to do these extra CI jobs. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 517f21a5..4f95f1aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,11 @@ on: jobs: test: name: Tests - runs-on: ${{ matrix.os }} + runs-on: 'ubuntu-latest' strategy: matrix: node: ['10', '12', '14', '15'] - os: [ubuntu-latest, macOS-latest, windows-latest] steps: - uses: actions/checkout@v1