feat: add reaction support for webchat #11
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: Interface CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "interface/**" | |
| - ".github/workflows/interface-ci.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "interface/**" | |
| - ".github/workflows/interface-ci.yml" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: interface-ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| quality: | |
| name: Interface Quality | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: interface | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: "1.3" | |
| - name: Install dependencies | |
| run: bun ci | |
| - name: Typecheck | |
| run: bunx tsc --noEmit |