Skip to content

Update error snapshot 📸 #329

Update error snapshot 📸

Update error snapshot 📸 #329

Workflow file for this run

---
name: CodeQL
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '31 7 * * 3'
permissions:
contents: read
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ TypeScript ]
permissions:
actions: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@f095bcc56b7c2baf48f3ac70d6d6782f4f553222
- name: Initialize CodeQL
uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a
with:
languages: ${{ matrix.language }}
source-root: src
- name: Autobuild
uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a
...