Skip to content

Fix passing through errors in fastify handlers #30

Fix passing through errors in fastify handlers

Fix passing through errors in fastify handlers #30

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "v\\d+.\\d+.\\d+-patch"
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Compile ReScript
run: npm run res:build
- name: Run tests
run: npm run coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info