We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efe2800 + 8130c97 commit 6a37399Copy full SHA for 6a37399
1 file changed
.github/workflows/ci.yml
@@ -178,6 +178,29 @@ jobs:
178
echo "$errors template validation failures"
179
exit $errors
180
181
+ node-compat:
182
+ name: Node.js ${{ matrix.node-version }} Compatibility
183
+ runs-on: ubuntu-latest
184
+ timeout-minutes: 5
185
+ strategy:
186
+ matrix:
187
+ node-version: [20, 22]
188
+ steps:
189
+ - uses: actions/checkout@v4
190
+
191
+ - uses: actions/setup-node@v4
192
+ with:
193
+ node-version: ${{ matrix.node-version }}
194
195
+ - run: corepack enable
196
+ - run: pnpm install
197
198
+ - name: Verify installation
199
+ run: |
200
+ echo "Node.js version: $(node --version)"
201
+ echo "pnpm version: $(pnpm --version)"
202
+ pnpm ls --depth 0
203
204
check-links:
205
name: Check Markdown Links
206
runs-on: ubuntu-latest
0 commit comments