From 14709e0e649f8f7f0f949c844722439e08972281 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Thu, 1 Aug 2024 20:00:27 +0200 Subject: [PATCH] [CI.yaml] Add `app-build` job. --- .github/workflows/CI.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index b996d77..45c51ca 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -19,3 +19,20 @@ jobs: node-version: "20" - run: node bin/create-cubing-app my-cubing-project - run: cd my-cubing-project && npm run build + +jobs: + app-build: + name: Create and build app from repo + + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "20" + - run: app-build