linter.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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:
  18. - main
  19. ###############
  20. # Set the Job #
  21. ###############
  22. jobs:
  23. build:
  24. # Name the Job
  25. name: Lint Code Base
  26. # Set the agent to run on
  27. runs-on: ubuntu-latest
  28. ##################
  29. # Load all steps #
  30. ##################
  31. steps:
  32. ##########################
  33. # Checkout the code base #
  34. ##########################
  35. - name: Checkout Code
  36. uses: actions/checkout@v2
  37. with:
  38. # Full git history is needed to get a proper list of changed files within `super-linter`
  39. fetch-depth: 0
  40. - name: Build
  41. run: |
  42. yarn install
  43. yarn lint
  44. yarn build
  45. env:
  46. VALIDATE_ALL_CODEBASE: false
  47. DEFAULT_BRANCH: main
  48. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}