Add documentation for Subscribe Ops feature in Valtio #1923
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: Test Multiple Versions | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| test_multiple_versions: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| react: | |
| - 18.0.0 | |
| - 18.1.0 | |
| - 18.2.0 | |
| - 18.3.1 | |
| - 19.0.0 | |
| - 19.1.0 | |
| - 19.2.0 | |
| - 19.3.0-canary-65eec428-20251218 | |
| - 0.0.0-experimental-65eec428-20251218 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - name: Install legacy testing-library | |
| if: ${{ startsWith(matrix.react, '16.') || startsWith(matrix.react, '17.') }} | |
| run: pnpm add -D @testing-library/react@12.1.4 | |
| - name: Patch for React 16 | |
| if: ${{ startsWith(matrix.react, '16.') }} | |
| run: | | |
| sed -i~ '1s/^/import React from "react";/' tests/*.tsx | |
| sed -i~ 's/"jsx": "react-jsx"/"jsx": "react"/' tsconfig.json | |
| sed -i~ 's/import\.meta\.env[?]\.MODE/"DEVELOPMENT".toLowerCase()/' src/*.ts src/*/*.ts src/*/*/*.ts | |
| - name: Test ${{ matrix.react }} | |
| run: | | |
| pnpm add -D react@${{ matrix.react }} react-dom@${{ matrix.react }} | |
| pnpm run test:spec |