From bf79ed5d84315cdf4b2fe661d1f854fc73a2180b Mon Sep 17 00:00:00 2001 From: yonada Date: Thu, 29 Feb 2024 11:22:35 +0000 Subject: [PATCH] feat: run test published package action with Windows OS (#2345) --- .github/workflows/test-published-packages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-published-packages.yml b/.github/workflows/test-published-packages.yml index e9358fd8bf..d72a6162f5 100644 --- a/.github/workflows/test-published-packages.yml +++ b/.github/workflows/test-published-packages.yml @@ -15,12 +15,13 @@ on: jobs: test-create-mud-project: name: Test create-mud project - runs-on: ubuntu-latest strategy: fail-fast: false matrix: + os: [ubuntu-latest-16-cores, windows-latest] template: [vanilla, react, react-ecs, phaser, threejs] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 with: