feat: add first-class WebSocket support via ctx.upgrade() and app.ws(… #834
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: Publish JSR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| # Skip publishing for forks | |
| if: github.repository_owner == 'denoland' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| cache: true | |
| deno-version: canary | |
| - name: Install dependencies | |
| run: deno install | |
| - name: Publish | |
| run: deno publish |