chore: rebase rollback #46
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
name: Continuous Integration | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Install packages | |
run: sudo gem install mdl | |
- name: Get file changes | |
id: get_file_changes | |
uses: trilom/[email protected] | |
with: | |
output: " " | |
- name: Echo file changes | |
run: | | |
echo Changed files: ${{ steps.get_file_changes.outputs.files }} | |
- name: Lint markdown files | |
run: mdl ${{ steps.get_file_changes.outputs.files}} | |
- run: npm install | |
- run: node .github/check-format.js |