Add example for using custom_id and referrer_id #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sdk-playground | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'sdk-playground/packages/**' | |
pull_request: | |
branches: [main] | |
paths: | |
- 'sdk-playground/packages/**' | |
jobs: | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9.0.6 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- run: pnpm install | |
- run: npm run build | |
working-directory: sdk-playground/packages/server | |
- run: npm run build | |
working-directory: sdk-playground/packages/client |