[feat] 修复新增 shader node 连线报错以及清理 block 与 menu 缓存 #15
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: CI | |
on: | |
push: {} | |
merge_group: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
paths: | |
- 'source/**.ts' | |
- 'source/scripts/*.js' | |
- '.github/workfows/ci.yaml' | |
permissions: | |
contents: read | |
jobs: | |
check-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run CI | |
run: npm run ci |