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