Send STREAMING_SET_PERSONA to parent #18
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: Compile and package | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-24.05 | |
- run: nix develop -c bash -c "bun install && bun run tsc" | |
- run: mkdir tgz | |
- run: nix develop -c bash -c "npm pack --pack-destination=tgz" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ format('speechstate-pr-{0}', github.event.number) }} | |
path: tgz |