Skip to content

feat: JWT validity check #3

feat: JWT validity check

feat: JWT validity check #3

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
- name: Copy example certs
run: cp docs/example-certs/* certs/
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test