Skip to content

Update for fastify v5 #104

Update for fastify v5

Update for fastify v5 #104

Workflow file for this run

name: Node.js CI
on:
push:
branches: master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: corepack prepare --activate
- run: pnpm i --frozen-lockfile
- run: pnpm test
env:
CI: true