From 5797b378dcaae20153f7dc997edb686824d0f78a Mon Sep 17 00:00:00 2001 From: Caleb Sacks <16855387+clabe45@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:31:50 -0800 Subject: [PATCH] :construction_worker: Configure github actions to run on all platforms --- .github/workflows/nodejs.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 873a45be..5cde659a 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -6,7 +6,10 @@ on: jobs: build: - runs-on: ubuntu-latest + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + + runs-on: ${{ matrix.os }} strategy: matrix: