mirror of
https://github.com/pmndrs/valtio.git
synced 2026-03-27 01:28:56 +00:00
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: Test Multiple Versions
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
cache-dependency-path: '**/pnpm-lock.yaml'
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm build # we don't have any other workflows to test build
|
|
- run: pnpm test:spec
|
|
|
|
test_matrix:
|
|
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.0
|
|
- 19.0.0-rc-4d577fd2-20241104
|
|
- 0.0.0-experimental-4d577fd2-20241104
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
cache-dependency-path: '**/pnpm-lock.yaml'
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm build # for macro test
|
|
- 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 test:spec
|