Skip to content

Send STREAMING_SET_PERSONA to parent #30

Send STREAMING_SET_PERSONA to parent

Send STREAMING_SET_PERSONA to parent #30

Workflow file for this run

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 --ignore-environment --keep NODE_AUTH_TOKEN
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: yarn --immutable
- run: yarn exec tsc
- run: npm version prerelease --no-git-tag-version --preid=${{ format('pr{0}-{1}-{2}', github.event.number, github.run_attempt, github.run_id) }}
- name: Publish to NPM registry
run: npm publish --tag ${{ format('pr{0}', github.event.number) }}