fix(chat): elaborate the bidirectionality of the messages array #1119
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
| name: CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: [ master, vnext ] | |
| jobs: | |
| build-and-verify: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| platform: ['angular', 'react', 'webcomponents', 'blazor'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build ${{ matrix.platform }} | |
| run: npm run xplat:build:${{ matrix.platform }} | |
| - name: Build Angular Unique | |
| if: matrix.platform == 'angular' | |
| run: npm run angular:build |