Skip to content

Bump openid-client from 5.7.0 to 6.1.7 #2677

Bump openid-client from 5.7.0 to 6.1.7

Bump openid-client from 5.7.0 to 6.1.7 #2677

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
lint-source:
name: Lint/build code
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint:check
- name: Run formatter
run: npm run prettier:check
- name: Run build
run: npm run build
run-tests:
name: Run tests
strategy:
fail-fast: false
matrix:
node-version:
- 18.17.0
- 18.x
- 20.5.0
- 20.x
- 22.x
platform:
- os: ubuntu-latest
shell: bash
jest-cache: /tmp/jest
- os: macos-latest
shell: bash
jest-cache: /tmp/jest
- os: windows-latest
shell: cmd
jest-cache: C:\\Users\\runneradmin\\AppData\\Local\\Temp\\jest
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Manage Jest cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ${{ matrix.platform.jest-cache }}
key: ${{ hashFiles('**/package-lock.json') }}
- name: Update npm
run: npm install -g npm@8
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:ci -- --cacheDirectory ${{ matrix.platform.jest-cache }}