You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Consider using larger runners for possible analysis time improvements.
20
+
runs-on: 'ubuntu-latest'
21
+
timeout-minutes: 120
22
+
permissions:
23
+
actions: read
24
+
contents: read
25
+
security-events: write
26
+
27
+
strategy:
28
+
fail-fast: false
29
+
matrix:
30
+
language: [ 'javascript-typescript' ]
31
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
32
+
33
+
steps:
34
+
- name: Checkout repository
35
+
uses: actions/checkout@v3
36
+
37
+
# Initializes the CodeQL tools for scanning.
38
+
- name: Initialize CodeQL
39
+
uses: github/codeql-action/init@v2
40
+
with:
41
+
languages: ${{ matrix.language }}
42
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
0 commit comments