[elsa] refactor(NodeState): unify intelligentForm and manualCheck node states #175
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: Elsa Compile | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'elsa-[0-9]+\.[0-9]+\.x' # 转义小数点,匹配如 elsa-0.1.x | |
| paths: | |
| - 'framework/elsa/**' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'elsa-[0-9]+\.[0-9]+\.x' # 转义小数点,匹配如 elsa-0.1.x | |
| paths: | |
| - 'framework/elsa/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20.16 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.16' | |
| - name: Build fit-elsa | |
| working-directory: ./framework/elsa/fit-elsa | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Build fit-elsa-react | |
| working-directory: ./framework/elsa/fit-elsa-react | |
| run: | | |
| npm install | |
| npm run build |