Skip to content

Make response_type optional in OAuth2 URL parsing with warning #96

Make response_type optional in OAuth2 URL parsing with warning

Make response_type optional in OAuth2 URL parsing with warning #96

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24.x'
cache: 'npm'
- name: Update npm
run: npm install -g npm@^11.6.2
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run unit tests
run: npm test -- --no-watch
- name: Build
run: npm run build