Skip to content

chore(deps): bump @fastify/jwt from 7.2.4 to 9.0.3 #338

chore(deps): bump @fastify/jwt from 7.2.4 to 9.0.3

chore(deps): bump @fastify/jwt from 7.2.4 to 9.0.3 #338

Workflow file for this run

name: CI Flow
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
name: CI flow ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node and restore cached dependencies
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Test
run: pnpm test