Update KolInputRadio value type to unknown and add example with object as value in React sample app #24063
Workflow file for this run
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-Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
- 'release/*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
# - uses: pnpm/action-setup@v3 | |
# with: | |
# run_install: false | |
# version: 8 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# cache: pnpm | |
# node-version: 20 | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# cache: pnpm | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store | |
restore-keys: | | |
${{ runner.os }}-pnpm-store | |
- name: Install | |
run: pnpm i --no-frozen-lockfile | |
- name: Unused | |
run: pnpm -r unused | |
- name: Depcheck | |
run: pnpm -r depcheck | |
- name: Format | |
run: pnpm -r format | |
- name: Build | |
run: pnpm -r build | |
- name: Lint | |
run: pnpm -r lint | |
- name: Test | |
run: pnpm -r --workspace-concurrency=1 test # https://pnpm.io/configuring | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
name: Upload theme test reports | |
with: | |
name: reports | |
path: | | |
packages/themes/**/test-results/**/*.png | |
!**/node_modules |