fix: add cursor at the end of markdown when receiving msg & modify the display form of the code area in markdown, and add the operation area #94
Workflow file for this run
This file contains 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: 'Code: CI' | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
workflow_call: | |
jobs: | |
ci-javascript: | |
name: 'CI: JavaScript' | |
uses: difizen/actions/.github/workflows/ci-javascript.yml@main | |
with: | |
node-version: ${{ matrix.node-version }} | |
python-version: ${{ matrix.python-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['20'] | |
python-version: ['3.10'] |