Skip to content

Update fastify to version 4.26.2 #644

Update fastify to version 4.26.2

Update fastify to version 4.26.2 #644

Workflow file for this run

name: CI
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run eslint
run: npm run lint
- name: Run prettier
run: npm run check-format
- name: Run typecheck
run: npm run ts-check
- name: Run tests
run: npm test