linter.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---
  2. #################################
  3. #################################
  4. ## Super Linter GitHub Actions ##
  5. #################################
  6. #################################
  7. name: Lint Code Base
  8. #
  9. # Documentation:
  10. # https://help.github.com/en/articles/workflow-syntax-for-github-actions
  11. #
  12. #############################
  13. # Start the job on all push #
  14. #############################
  15. on:
  16. push:
  17. branches-ignore: main
  18. # Remove the line above to run when pushing to master
  19. pull_request:
  20. branches: main
  21. ###############
  22. # Set the Job #
  23. ###############
  24. jobs:
  25. build:
  26. # Name the Job
  27. name: Lint Code Base
  28. # Set the agent to run on
  29. runs-on: ubuntu-latest
  30. ##################
  31. # Load all steps #
  32. ##################
  33. steps:
  34. ##########################
  35. # Checkout the code base #
  36. ##########################
  37. - name: Checkout Code
  38. uses: actions/checkout@v2
  39. with:
  40. # Full git history is needed to get a proper list of changed files within `super-linter`
  41. fetch-depth: 0
  42. ################################
  43. # Run Linter against code base #
  44. ################################
  45. - name: Lint Code Base
  46. uses: github/super-linter@v4
  47. env:
  48. VALIDATE_ALL_CODEBASE: false
  49. DEFAULT_BRANCH: main
  50. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  51. - name: Build
  52. run: |
  53. yarn install
  54. yarn lint
  55. yarn run build