Skip to content

Release 3.2.0

Release 3.2.0 #42

Workflow file for this run

# CodeQL (plugin) v. 2.0.0
name: CodeQL
on:
push:
branches: [main]
paths-ignore:
- 'screenshots/**' # any file under screenshots/
- 'scripts/**' # any file under scripts/
- '**/*.md' # any .md anywhere
pull_request:
branches: [main]
paths-ignore:
- 'screenshots/**' # any file under screenshots/
- 'scripts/**' # any file under scripts/
- '**/*.md' # any .md anywhere
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v6
- uses: github/codeql-action/init@v4
with:
languages: javascript
config: |
paths-ignore:
- 'scripts/**'
- '**/*.spec.ts'
- '**/*.test.ts'
- '**/__test__/*.ts'
- uses: github/codeql-action/analyze@v4