-
Notifications
You must be signed in to change notification settings - Fork 3
58 lines (44 loc) · 1.18 KB
/
Copy pathci.yaml
File metadata and controls
58 lines (44 loc) · 1.18 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup deps
uses: ./.github/actions/setup
- name: Build
run: bun run build
- name: Run prettier
run: bun run prettier
- name: Run linter
run: bun run lint
- name: Run typecheck
run: bun run typecheck
- name: Run tests
run: bun run test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-react-versions:
name: Test React ${{ matrix.react-version }}
runs-on: ubuntu-latest
strategy:
matrix:
react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest", "next"]
steps:
- uses: actions/checkout@v4
- name: Setup deps
uses: ./.github/actions/setup
- name: Install React ${{ matrix.react-version }}
run: bun add -d react@${{ matrix.react-version }}
- name: Run typecheck
run: bun run typecheck
- name: Run tests
run: bun run test:ci