From 74f96c8c0f0e3a668d3fce07b102c79f997e8bc1 Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Wed, 22 May 2024 10:48:50 -0600 Subject: [PATCH] parameterize build platform for action --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a1171e..f72e5d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,11 +10,12 @@ jobs: build: name: Node ${{ matrix.node-version }} - runs-on: ubuntu-latest + runs-on: ${{matrix.platform}} strategy: matrix: node-version: [16.x, 18.x, 20.x] + platform: [ubuntu-latest] steps: - uses: actions/checkout@v4