From f418f507faec010cd72c6123bdf18e084199b6e3 Mon Sep 17 00:00:00 2001 From: Ryuu Mitsuki Date: Tue, 21 May 2024 19:26:15 +0700 Subject: [PATCH] ci: Add Windows to `runs-on` field Now it runs on Windows to check the compatibility both on Ubuntu (Linux) and Windows systems. --- .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 cc1aee6..4ad78e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,9 +7,10 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }}-latest strategy: matrix: + os: [ Windows, Ubuntu ] node-ver: [16.x, 18.x, 20.x] steps: