Skip to content

Upgraded node to 20 and fixed scopes #59

Upgraded node to 20 and fixed scopes

Upgraded node to 20 and fixed scopes #59

Workflow file for this run

# Synchronization Manifest API Sample CodeQL Build
name: "CodeQL"
on:
push:
branches:
- main
- "release/**"
pull_request:
branches:
- main
- "release/**"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript", "typescript"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1