Skip to content

Bump fast-jwt from 1.5.1 to 3.3.2 #13

Bump fast-jwt from 1.5.1 to 3.3.2

Bump fast-jwt from 1.5.1 to 3.3.2 #13

Workflow file for this run

name: tests
on:
push:
paths-ignore:
- "**/*.md"
branches:
- main
pull_request:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 17.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --include-dev
- name: Run the tests
run: npm test