Skip to content

fix: remove fastify-plugin wrapper #31

fix: remove fastify-plugin wrapper

fix: remove fastify-plugin wrapper #31

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
paths-ignore:
- LICENSE
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [ 14, 16, 18 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test:coverage