From a5dc15ec7bcaf620842afa778b32dd4b38a803e7 Mon Sep 17 00:00:00 2001 From: blackfang007 Date: Fri, 5 Jun 2026 20:46:19 +0530 Subject: [PATCH 1/3] Add Windows CI testing --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39a3cd3..04be97f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,12 @@ on: jobs: build-and-test: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -32,4 +37,4 @@ jobs: run: npm run test - name: Build project - run: npm run build + run: npm run build \ No newline at end of file From 29ab65d25184455225516c1e4750145cee7e3ee6 Mon Sep 17 00:00:00 2001 From: blackfang007 Date: Sun, 7 Jun 2026 19:00:20 +0530 Subject: [PATCH 2/3] Fix workflow formatting --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04be97f..a849f19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,4 +37,5 @@ jobs: run: npm run test - name: Build project - run: npm run build \ No newline at end of file + run: npm run build + From 2439b449042d7544c54f593099193b014836dcef Mon Sep 17 00:00:00 2001 From: blackfang007 Date: Sun, 7 Jun 2026 19:08:25 +0530 Subject: [PATCH 3/3] Apply Prettier formatting --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a849f19..10ac6ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,4 +38,3 @@ jobs: - name: Build project run: npm run build -