linter.yml 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. pull_request:
  17. branches: main
  18. ###############
  19. # Set the Job #
  20. ###############
  21. jobs:
  22. build:
  23. # Name the Job
  24. name: Lint Code Base
  25. # Set the agent to run on
  26. runs-on: ubuntu-latest
  27. ##################
  28. # Load all steps #
  29. ##################
  30. steps:
  31. ################################
  32. # Run Linter against code base #
  33. ################################
  34. - name: Lint
  35. run: |
  36. yarn install
  37. yarn lint
  38. yarn run build
  39. env:
  40. VALIDATE_ALL_CODEBASE: false
  41. DEFAULT_BRANCH: main
  42. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}