From cefe3e01a22c0d85166d4096dd36ee864a7f9b58 Mon Sep 17 00:00:00 2001 From: shadowemperor1510 Date: Wed, 25 Jun 2025 13:59:18 +0530 Subject: [PATCH] workflow added. --- .github/workflows/file.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/file.yml diff --git a/.github/workflows/file.yml b/.github/workflows/file.yml new file mode 100644 index 00000000000..62225aa2928 --- /dev/null +++ b/.github/workflows/file.yml @@ -0,0 +1,23 @@ +name: Windows CI +on: [push, pull_request] + +jobs: + build: + runs-on: windows-latest + steps: + -uses: actions/checkout@v4 + + -uses: actions/setup-node@v4 + with: + python-version: '3.8' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run tests + run: | + npm CI + npm run lint + npm test -- --watchAll=false \ No newline at end of file