mirror of https://github.com/tiyn/tidy.nvim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
620 B
28 lines
620 B
1 year ago
|
name: CI
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- "README.md"
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "README.md"
|
||
|
|
||
|
jobs:
|
||
|
docs:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: ${{ github.ref == 'refs/heads/main' }}
|
||
|
name: pandoc markdown to vimdoc
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: panvimdoc
|
||
|
uses: kdheepak/panvimdoc@main
|
||
|
with:
|
||
|
vimdoc: tidy.nvim
|
||
|
version: "Neovim >= 0.9.0"
|
||
|
demojify: true
|
||
|
treesitter: true
|
||
|
- name: Push changes
|
||
|
uses: stefanzweifel/git-auto-commit-action@v4
|
||
|
with:
|
||
|
commit_message: "chore(build): auto-generate vimdoc"
|