Merge branch 'feature/PC246-9/proxy-with-mapping' of https://github.c… #243
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: remark-lint | |
on: [pull_request,push] | |
env: # environment variables (available in any part of the action) | |
NODE_VERSION: 16 | |
jobs: | |
remark-lint: | |
name: runner / remark-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install remark presets | |
run: npm install remark-cli remark-preset-lint-consistent remark-preset-lint-recommended remark-lint-list-item-indent | |
shell: bash | |
- name: run remark | |
run: npx remark . --output --use remark-preset-lint-consistent --use remark-preset-lint-recommended --use remark-lint-list-item-indent | |
- name: Git commit | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "" | |
git add . | |
git reset package.json | |
git reset package-lock.json | |
git reset node_modules | |
git commit -m "Update src from remark-lint" || echo "No changes to commit" | |
git push |