Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,29 @@ jobs:
echo "$errors template validation failures"
exit $errors

node-compat:
name: Node.js ${{ matrix.node-version }} Compatibility
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- run: corepack enable
- run: pnpm install

- name: Verify installation
run: |
echo "Node.js version: $(node --version)"
echo "pnpm version: $(pnpm --version)"
pnpm ls --depth 0

check-links:
name: Check Markdown Links
runs-on: ubuntu-latest
Expand Down
Loading