From 41c0027391bdd546704bd53cd929c8524fd5ac7a Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 9 Sep 2024 08:53:37 -0700 Subject: [PATCH] Try something else --- .github/workflows/ci.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..7f09c2e3 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,27 @@ +name: CI +on: push + +jobs: + do-it: + strategy: + fail-fast: false + matrix: + include: + - platform: 'macos-latest' + - platform: 'ubuntu-22.04' + - platform: 'windows-latest' + runs-on: ${{ matrix.platform }} + steps: + - name: Checkout yaakapp/app + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install Yaak CLI + run: npm install -g @yaakapp/cli + + - name: Verify the Yaak CLI + run: yaakcli.exe --version