Skip to content

Send STREAMING_SET_PERSONA to parent #26

Send STREAMING_SET_PERSONA to parent

Send STREAMING_SET_PERSONA to parent #26

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
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn --immutable
- run: yarn exec tsc
- run: npm version prerelease --no-git-tag-version --preid=${{ format('pr{0}-{1}', github.event.number, github.run_attempt) }}
- name: Publish to NPM registry
run: npm publish --tag ${{ format('pr{0}', github.event.number) }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}