mirror of
https://github.com/pmndrs/zustand.git
synced 2025-12-08 19:45:52 +00:00
* ci(.github/workflows/lint-and-type.yml): add matrix strategy for parallel execution * ci(.github/workflows/lint-and-type.yml): set 'fail-fast' to 'false' * ci(.github/workflows): change jobs name * ci(.github/workflows): add test.yml * ci(.github/workflows/test.yml): add if condition * ci(.github/workflows/test-old-typescript.yml): rename job to 'test_old_typescript' * ci(.github/workflows/test.yml): remove matrix strategy * ci(.github/workflows/test.yml): add comment in build script * ci(.github/workflows/test.yml): change test script to sequentially
35 lines
832 B
YAML
35 lines
832 B
YAML
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-rc.1
|
|
- 19.1.0-canary-3ce77d55-20250106
|
|
- 0.0.0-experimental-3ce77d55-20250106
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'pnpm'
|
|
- run: pnpm install
|
|
- name: Test ${{ matrix.react }} ${{ matrix.devtools-skip }}
|
|
run: |
|
|
pnpm add -D react@${{ matrix.react }} react-dom@${{ matrix.react }}
|
|
pnpm run test:spec
|