fix(relation): serialize add friend requests correctly #481
Workflow file for this run
This file contains hidden or 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: ci | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| paths-ignore: | |
| - "docs/**" | |
| - ".vscode/**" | |
| - "README.md" | |
| - ".gitignore" | |
| - "LICENSE" | |
| push: | |
| jobs: | |
| jsr-dry-run: | |
| name: "Checking if it's valid for JSR" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: v2.x | |
| - run: deno publish --dry-run | |
| working-directory: ./packages/linejs | |
| - run: deno publish --dry-run | |
| working-directory: ./packages/types | |
| deno: | |
| name: "Testing" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: v2.x | |
| # `-A` because transitive deps (e.g. the `q` promise lib reachable | |
| # through Buffer) read env vars at module init. Without env access | |
| # the test runner fails before any test body runs. | |
| - run: deno test -A | |
| # format: | |
| # name: "Format Check" | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - uses: denoland/setup-deno@v1 | |
| # with: | |
| # deno-version: v2.x | |
| # - run: deno fmt --check |