From 14ce6d5bb32e0426854d6b8d60049b19f17e90da Mon Sep 17 00:00:00 2001 From: fi3ework Date: Tue, 28 May 2024 22:53:06 +0800 Subject: [PATCH] ci: add windows-latest --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 812ec62..35c5dba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,12 +17,12 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # ======== test ======== - mac: - # run ut in MacOS, as SWC cases will fail in Ubuntu CI - runs-on: macos-14 + test-build: strategy: matrix: node-version: [18.x] + os: [macos-14, windows-latest] + runs-on: ${{ matrix.os }} # Steps represent a sequence of tasks that will be executed as part of the job steps: