You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
654 B

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