25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

28 satır
672 B

4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
  1. name: 'Code Scanning'
  2. on:
  3. push:
  4. pull_request:
  5. schedule:
  6. - cron: '0 0 * * 0'
  7. jobs:
  8. CodeQL-Build:
  9. strategy:
  10. fail-fast: false
  11. # CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
  12. runs-on: ubuntu-latest
  13. steps:
  14. - name: Checkout repository
  15. uses: actions/checkout@v2
  16. # Initializes the CodeQL tools for scanning.
  17. - name: Initialize CodeQL
  18. uses: github/codeql-action/init@v1
  19. with:
  20. languages: javascript
  21. - name: Perform CodeQL Analysis
  22. uses: github/codeql-action/analyze@v1