Skip to content

Merge pull request #37 from electrode-io/fix-fastify-issues #46

Merge pull request #37 from electrode-io/fix-fastify-issues

Merge pull request #37 from electrode-io/fix-fastify-issues #46

Workflow file for this run

name: ci
on:
push:
branches: ['*']
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x,16.x,18.x,20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run coverage
env:
CI: true