Bump express in /Container-orchestration/Docker/node #224
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
lint-changelog: | |
name: Lint changelog file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint changelog file | |
uses: docker://avtodev/markdown-lint:v1 | |
with: | |
rules: '/lint/rules/changelog.js' | |
config: '/lint/config/changelog.yml' | |
args: './CHANGELOG.md' | |
# Or using current repository as action: | |
- name: Lint changelog file | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
rules: '/lint/rules/changelog.js' | |
config: '/lint/config/changelog.yml' | |
args: './CHANGELOG.md' |