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.

28 rivejä
672 B

4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
4 vuotta sitten
  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