linter.yml 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. #################################
  3. #################################
  4. ## Super Linter GitHub Actions ##
  5. #################################
  6. #################################
  7. name: Lint Code
  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
  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 #
  36. ##########################
  37. - name: Lint
  38. run: |
  39. yarn install
  40. yarn lint
  41. yarn run build