fix(deps): update all non-major dependencies #736
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |