refactor: rename ActorHandle to ActorConn for clarity #545
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
on: | |
pull_request: | |
paths: | |
- packages/** | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn install # re-install to detect CLIs | |
# create examples | |
- run: ./node_modules/.bin/create-actor --platform nodejs --template chat-room templates/chat-room | |
- run: ./node_modules/.bin/create-actor --platform nodejs --template counter templates/counter | |
# TODO: Add --compact once we publish them to npm | |
- run: yarn dlx pkg-pr-new publish 'packages/**/platforms/*' 'packages/*' 'packages/frameworks/*' --template './templates/*' --packageManager yarn |