Skip to content

Merge branch 'main' of github.com:prefabs-tech/fastify into feat/pass… #5783

Merge branch 'main' of github.com:prefabs-tech/fastify into feat/pass…

Merge branch 'main' of github.com:prefabs-tech/fastify into feat/pass… #5783

Workflow file for this run

name: "Test suite"
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Use node ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm and install dependencies
uses: pnpm/action-setup@v6
with:
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Build packages
run: pnpm build
- name: Run tests
run: pnpm test