Skip to content

chore: merge and make CI buildable #32

chore: merge and make CI buildable

chore: merge and make CI buildable #32

Workflow file for this run

name: 'Code: CI'
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
workflow_call:
permissions:
contents: read
actions: read # required by nrwl/nx-set-shas
jobs:
ci-javascript:
name: 'CI: JavaScript'
uses: secretflow/web-ci/.github/workflows/ci-javascript.yml@main
with:
node-version: ${{ matrix.node-version }}
python-version: '3.8'
strategy:
fail-fast: false
matrix:
node-version: ['18', '20']
ci-python:
name: 'CI: Python'
uses: secretflow/web-ci/.github/workflows/ci-python.yml@main
with:
node-version: '18'
python-version: ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
python-version: ['3.8']