Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,17 @@ jobs:
- name: Run
run: node index.js
- name: Run CLI
run: npx --yes --package ${{ steps.packages.outputs.paths }} seam --version
run: |
npx --yes --package ${{ steps.packages.outputs.paths }} seam --version
npx --yes --package ${{ steps.packages.outputs.paths }} seam wizard --version
- name: Verify standalone binary checksums
working-directory: release
run: sha256sum --check checksums.txt
- name: Run standalone binary
run: |
chmod +x release/seam-v*-linux-x64
release/seam-v*-linux-x64 --version
release/seam-v*-linux-x64 wizard --version
typecheck:
name: Typecheck (Node.js v${{ matrix.node }})
runs-on: ubuntu-latest
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,22 @@ $ paru -S seam-bin

[aur]: https://aur.archlinux.org/packages/seam-bin
[npm]: https://www.npmjs.com/
[Seam Wizard]: https://github.com/seamapi/wizard

## Usage

Every `seam` command is interactive and will prompt you for any missing
required properties with helpful suggestions. To avoid automatic behavior,
pass `-y`
pass `-y`.

To take a project from zero to a working Seam integration, run the
[Seam Wizard] from the project's root:

```bash
seam wizard
```

For API commands:

```bash
# Login to Seam
Expand Down
Loading
Loading