From 3c17390596963a7b73be30d2a7a8c763d00924f3 Mon Sep 17 00:00:00 2001 From: Thomas Belin Date: Thu, 29 Feb 2024 16:14:25 +0100 Subject: [PATCH] add all plateforms --- .github/workflows/build.yml | 42 +++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a298730969..31e7778198b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true jobs: - build: + build-linux: runs-on: ubuntu-latest steps: @@ -26,5 +26,43 @@ jobs: - name: Install JS dependencies run: yarn --immutable - - name: Lint + - name: build run: yarn build:linux + + build-windows: + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 16.x + cache: 'yarn' + + - name: Install JS dependencies + run: yarn --immutable + + - name: build + run: echo "TODO" + + build-macos: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 16.x + cache: 'yarn' + + - name: Install JS dependencies + run: yarn --immutable + + - name: build + run: echo "TODO"