Skip to content

Add Fastify support #36

Add Fastify support

Add Fastify support #36

Workflow file for this run

name: Express adapter tests
on:
push:
branches: [main]
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
defaults:
run:
working-directory: express
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test