Always provide dispatch_context_message and assemble_text_with_context #35
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: Wasm Build | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| types: [opened, synchronize, reopened, unlabeled] | |
| jobs: | |
| build: | |
| if: github.event.action != 'unlabeled' || github.event.label.name == 'kokoro:run' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: '0' | |
| - name: Build web | |
| run: docker compose -f source/wasm/docker-compose.yml --project-directory . up | |
| - name: Run tests | |
| run: node test/wasm/test.js |