File tree 1 file changed +1
-61
lines changed
1 file changed +1
-61
lines changed Original file line number Diff line number Diff line change @@ -36,72 +36,12 @@ jobs:
36
36
- name : Run test
37
37
run : pnpm test
38
38
39
- build-minimal :
40
- name : Build Minimal Example ${{ matrix.node-version }}
41
- runs-on : ubuntu-latest
42
- strategy :
43
- fail-fast : true
44
- matrix :
45
- node-version :
46
- - 18
47
- - 22
48
-
49
- steps :
50
- - name : Checkout
51
- uses : actions/checkout@v4
52
-
53
- - name : Install pnpm
54
- uses : pnpm/action-setup@v3
55
- id : pnpm-install
56
- with :
57
- version : 9.12.2
58
- run_install : false
59
-
60
- - name : Install Node.js
61
- uses : actions/setup-node@v4
62
- with :
63
- node-version : ${{ matrix.node-version }}
64
- cache : ' pnpm'
65
-
66
- - name : Install dependencies
67
- run : pnpm install --frozen-lockfile --strict-peer-dependencies
68
-
69
39
- name : Build minimal example
70
40
run : |
71
41
cd examples/minimal
72
42
pnpm build
73
43
74
- build-full :
75
- name : Build Full Example ${{ matrix.node-version }}
76
- runs-on : ubuntu-latest
77
- strategy :
78
- fail-fast : true
79
- matrix :
80
- node-version :
81
- - 18
82
- - 22
83
-
84
- steps :
85
- - name : Checkout
86
- uses : actions/checkout@v4
87
-
88
- - name : Install pnpm
89
- uses : pnpm/action-setup@v3
90
- id : pnpm-install
91
- with :
92
- version : 9.12.2
93
- run_install : false
94
-
95
- - name : Install Node.js
96
- uses : actions/setup-node@v4
97
- with :
98
- node-version : ${{ matrix.node-version }}
99
- cache : ' pnpm'
100
-
101
- - name : Install dependencies
102
- run : pnpm install --frozen-lockfile --strict-peer-dependencies
103
-
104
- - name : Build minimal example
44
+ - name : Build full example
105
45
run : |
106
46
cd examples/full
107
47
pnpm build
You can’t perform that action at this time.
0 commit comments