From b3444494f13df18fa8d66a7f0460105b9853333f Mon Sep 17 00:00:00 2001 From: Alejandro Leal Date: Wed, 21 Jan 2026 21:13:46 +0100 Subject: [PATCH] test build --- .github/workflows/test-build.yml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/test-build.yml diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml new file mode 100644 index 0000000..7cec15d --- /dev/null +++ b/.github/workflows/test-build.yml @@ -0,0 +1,34 @@ +name: Test Build + +on: + pull_request: + branches: + - master + +jobs: + test-build: + strategy: + matrix: + os: [windows-latest, ubuntu-latest] + + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + + - name: Setup pnpm + uses: pnpm/action-setup@v3 + with: + version: 10 + + - name: Install dependencies + run: pnpm install + + - name: Build distributables + run: pnpm run make