1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ---
- #################################
- #################################
- ## Super Linter GitHub Actions ##
- #################################
- #################################
- name: Lint Code Base
- #
- # Documentation:
- # https://help.github.com/en/articles/workflow-syntax-for-github-actions
- #
- #############################
- # Start the job on all push #
- #############################
- on:
- push:
- branches:
- - main
- ###############
- # Set the Job #
- ###############
- jobs:
- build:
- # Name the Job
- name: Lint Code Base
- # Set the agent to run on
- runs-on: ubuntu-latest
- ##################
- # Load all steps #
- ##################
- steps:
- ##########################
- # Checkout the code base #
- ##########################
- - name: Checkout Code
- uses: actions/checkout@v2
- with:
- # Full git history is needed to get a proper list of changed files within `super-linter`
- fetch-depth: 0
- - name: Build
- run: |
- yarn install
- yarn lint
- yarn build
- env:
- VALIDATE_ALL_CODEBASE: false
- DEFAULT_BRANCH: main
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|