-
Notifications
You must be signed in to change notification settings - Fork 44
79 lines (75 loc) · 2.25 KB
/
Copy pathci.yml
File metadata and controls
79 lines (75 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: CI
on:
push:
branches: [master, development, 'feat/**']
pull_request:
jobs:
lint:
name: Lint + typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
test:
name: Test (React ${{ matrix.react }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
react: ['16.14.0', '17.0.2', '18.3.1', '19.0.0']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Install React ${{ matrix.react }}
# RTL version matrix:
# - React 16.14 / 17 → RTL v12 (last version with those peers).
# Tests use a local renderHook shim built on render() so the
# missing @testing-library/react.renderHook export is OK.
# - React 18 → RTL v14.
# - React 19 → RTL v16 (first version with React 19 in its peer
# range; v14 pins to react@^18 and rejects @19.0.0 install).
run: |
if [[ "${{ matrix.react }}" == 16.* || "${{ matrix.react }}" == 17.* ]]; then
npm install --no-save \
react@${{ matrix.react }} \
react-dom@${{ matrix.react }} \
"@testing-library/react@^12"
elif [[ "${{ matrix.react }}" == 18.* ]]; then
npm install --no-save \
react@${{ matrix.react }} \
react-dom@${{ matrix.react }} \
"@testing-library/react@^14"
else
npm install --no-save \
react@${{ matrix.react }} \
react-dom@${{ matrix.react }} \
"@testing-library/react@^16"
fi
- run: npm test
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 7