Skip to content

Commit

Permalink
Add CI to check NPM install
Browse files Browse the repository at this point in the history
  • Loading branch information
gschier committed Sep 9, 2024
1 parent 371d92b commit 4aceb52
Show file tree
Hide file tree
Showing 2 changed files with 646 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/verify-distribution.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on: push

jobs:
verify-distribution:
name: Verify Distribution
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 dependencies
run: npm install

- name: Install yaak CLI
run: |
npm install -g @yaakapp/cli
npm run build
yaakcli --version
Loading

0 comments on commit 4aceb52

Please sign in to comment.