From da1c00f5c89dfd480f1bdbd51a83cdbe75a47a87 Mon Sep 17 00:00:00 2001
From: Robert <robertbrignull@github.com>
Date: Fri, 28 Aug 2020 14:36:05 +0100
Subject: [PATCH] Run `npm test` on all operating systems

---
 .github/workflows/pr-checks.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml
index ce90c1e0e..3fdea4998 100644
--- a/.github/workflows/pr-checks.yml
+++ b/.github/workflows/pr-checks.yml
@@ -65,9 +65,12 @@ jobs:
         echo "Success: node_modules are up to date"
 
   npm-test:
-    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        os: [ubuntu-latest,macos-latest]
+    runs-on: ${{ matrix.os }}
 
     steps:
     - uses: actions/checkout@v1
     - name: npm run-script test
-      run: npm run-script test
\ No newline at end of file
+      run: npm run-script test