secretNote本地启动状态bugfix #191
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
# This Action is used to run ci:check:javascript and ci:check:python to check | |
# Python and JavaScript code. | |
name: 'Code: CI' | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
workflow_call: | |
jobs: | |
ci-javascript: | |
name: 'CI: JavaScript' | |
uses: secretflow/web-ci/.github/workflows/ci-javascript.yml@main | |
with: | |
node-version: ${{ matrix.node-version }} | |
python-version: ${{ matrix.python-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['18'] | |
python-version: ['3.10'] | |
ci-python: | |
name: 'CI: Python' | |
uses: secretflow/web-ci/.github/workflows/ci-python.yml@main | |
with: | |
node-version: ${{ matrix.node-version }} | |
python-version: ${{ matrix.python-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['18'] | |
python-version: ['3.10'] |