commit 9d6613653f228217bf9d59c89c3107471f176150 Author: Aleksandr Ketov Date: Wed Jan 27 09:39:54 2021 +0300 Create linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..3cde1c6 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,26 @@ +name: linter + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + lint: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - uses: ocular-d/md-linkcheck-action@1.0.2 + - uses: tomwhross/write-good-action@v1.2