From b87d41b2f35d43663d7505292981c47b97643376 Mon Sep 17 00:00:00 2001 From: Daniel Williams Date: Wed, 31 Jan 2024 17:14:22 +0000 Subject: [PATCH] add worker for windows tests --- .github/workflows/windows-unit-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/windows-unit-test.yml diff --git a/.github/workflows/windows-unit-test.yml b/.github/workflows/windows-unit-test.yml new file mode 100644 index 0000000000..3c50ae4e73 --- /dev/null +++ b/.github/workflows/windows-unit-test.yml @@ -0,0 +1,23 @@ +name: Unit tests + +on: + push: + branches: + - next + pull_request: + types: [opened, synchronize, reopened] + +jobs: + build: + name: Core Unit Tests, windows + strategy: + fail-fast: false + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - name: Set node version + uses: actions/setup-node@v3 + - name: install and compile + run: yarn + - name: test + run: yarn test