fix: Ensure OIDC provider UI can handle OIDC providers w/o installations #1838
Workflow file for this run
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: Code Scanning | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- ".github/workflows/www.yaml" | |
- "www/**" | |
pull_request: | |
branches: [ master ] | |
paths: | |
- ".github/workflows/www.yaml" | |
- "www/**" | |
schedule: | |
- cron: '0 0 * * 1' | |
jobs: | |
codeql: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: CodeQL | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'typescript' ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- uses: github/codeql-action/autobuild@v2 | |
- uses: github/codeql-action/analyze@v2 |