From 5ba9c0c80f825c929307371bd65b1edf3d216545 Mon Sep 17 00:00:00 2001 From: niro4-1 Date: Thu, 4 Jun 2026 11:33:04 +0300 Subject: [PATCH] Add Windows CI workflow --- .github/workflows/windows-ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/windows-ci.yml diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml new file mode 100644 index 0000000..fe1188a --- /dev/null +++ b/.github/workflows/windows-ci.yml @@ -0,0 +1,28 @@ +name: Windows CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' + + - name: Install dependencies + run: npm install + + - name: Run tests + run: npm test \ No newline at end of file