Skip to content

Security Analysis

Security Analysis #679

Workflow file for this run

name: Security Analysis
on:
push:
# Run on pushes to specific branches
branches:
- "*"
# Do not run on tags
tags-ignore:
- "*"
pull_request:
# Run on to branches with an open PR
branches:
- "*"
schedule:
# At 00:00 on Monday.
- cron: '0 0 * * 1'
jobs:
CodeQL:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3
- uses: github/codeql-action/init@v2
with:
languages: javascript
- uses: github/codeql-action/analyze@v2