@equisoft/oauth2orize-jwt-to-bearer
Version:
JSON Web Token (JWT) Bearer Token Exchange Middleware for OAuth2orize.
35 lines (31 loc) • 682 B
YAML
version: 2
aliases:
# Variables
- &yarn_install_cache_key v2-yarn-install-{{ checksum "yarn.lock" }}
jobs:
yarn_test:
docker:
- image: node:9
steps:
- checkout
- restore_cache:
keys:
-
- run:
name: "yarn install"
command: yarn install --frozen-lockfile
- save_cache:
key:
paths:
./node_modules
- run:
name: "yarn test"
command: yarn test
workflows:
version: 2
test:
jobs:
- yarn_test:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+/