Skip to content

Commit

Permalink
Try something else
Browse files Browse the repository at this point in the history
  • Loading branch information
gschier committed Sep 9, 2024
1 parent 6ce1369 commit 41c0027
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 41c0027

Please sign in to comment.