-
-
Notifications
You must be signed in to change notification settings - Fork 22
51 lines (40 loc) · 1.17 KB
/
build.yml
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
name: build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 20.x]
zustand: [
4.2.0, # Oldest zustand TS supported
4.0.0, # Oldest zustand JS supported
4, # Latest zustand v5 supported
latest # Latest zustand supported
]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Install Dependencies
run: pnpm install
- name: Install Zustand ${{ matrix.zustand }}
run: pnpm add zustand@${{ matrix.zustand }} -w
- name: Patch tsup config
if: ${{ matrix.zustand == '4.0.0' }}
# Patch the tsup config to use `dts: false` for Zustand 4.0.0
run: |
sed -i~ 's/dts: true/dts: false/' tsup.config.ts
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test:ci