Skip to content

Commit 555a96b

Browse files
👞
1 parent 0657e3b commit 555a96b

File tree

1 file changed

+1
-61
lines changed

1 file changed

+1
-61
lines changed

.github/workflows/test.yml

+1-61
Original file line numberDiff line numberDiff line change
@@ -36,72 +36,12 @@ jobs:
3636
- name: Run test
3737
run: pnpm test
3838

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-
6939
- name: Build minimal example
7040
run: |
7141
cd examples/minimal
7242
pnpm build
7343
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
10545
run: |
10646
cd examples/full
10747
pnpm build

0 commit comments

Comments
 (0)