Code Scanning using Github Advanced Security #137121
Replies: 2 comments
-
You may need to specify |
Beta Was this translation helpful? Give feedback.
-
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
Body
Hi,
I am using Github Advanced Secuirty on my azure devops project. Which is written using typescript langugage.
Below is the yml file content used in the pipeline
Starter pipeline
Start with a minimal pipeline that you can customize to build and deploy your code.
Add steps that build, run tests, deploy, and more:
https://aka.ms/yaml
trigger:
pool:
vmImage: ubuntu-latest
steps:
displayName: 'Run Advanced Dependency Scanning'
Static Code Analysis
displayName: Initialize CodeQL
inputs:
languages: 'typescript'
failOnIssues: true
displayName: Perform CodeQL Analysis
Security Policy Enforcement
script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
I get an error saying typescript is not valid selection. is there a way to use this scanning typescript project?
Beta Was this translation helpful? Give feedback.
All reactions