Skip to content

BREAKING CHANGE: support for fastify v5 and node test runner #331

BREAKING CHANGE: support for fastify v5 and node test runner

BREAKING CHANGE: support for fastify v5 and node test runner #331

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 20
- 22
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run test:ci
- run: bash <(curl -s https://codecov.io/bash)
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3