Skip to content

fix(deps): update all non-major dependencies #736

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #736

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies 👨🏻‍💻
run: npm ci
- name: Run linter 👀
run: npm run lint
- name: Run tests 🧪
run: npm run build
validate-json:
runs-on: ubuntu-latest
name: Validate ${{ matrix.name }} JSON
strategy:
fail-fast: true
matrix:
include:
- name: OpenID Connect Providers
files: 'data/openid/providers/*.json'
- name: OpenID Connect Applications
files: 'data/templates/*.json'
schema: https://schemas.cerberauth.com/templates/draft/2024-09/application.schema.json
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Validate JSON
uses: emmanuelgautier/validate-json@v1
with:
files: ${{ matrix.files }}
schema: ${{ matrix.schema }}