Skip to content

Collection of SecretNote Improvement (0.0.50) #175

Collection of SecretNote Improvement (0.0.50)

Collection of SecretNote Improvement (0.0.50) #175

Workflow file for this run

# 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:
# https://github.com/orgs/community/discussions/25722#discussioncomment-3248921
dont-run-on-draft-pr:
name: Don't Run on Draft PR
runs-on: ubuntu-latest
steps:
- uses: z0gSh1u/dont-run-on-draft-pr@v1
ci-javascript:
name: 'CI: JavaScript'
needs: dont-run-on-draft-pr
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'
needs: dont-run-on-draft-pr
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']