Skip to content

perf(indent-blankline.nvim): revert back from 'hlchunk' to 'ibl' #43

perf(indent-blankline.nvim): revert back from 'hlchunk' to 'ibl'

perf(indent-blankline.nvim): revert back from 'hlchunk' to 'ibl' #43

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
pr_conventional_commit:
name: PR Conventional Commit
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ytanikin/[email protected]
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
luacheck:
name: Lua check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: LuaLs Annotation Typecheck
uses: stevearc/nvim-typecheck-action@v1
with:
path: lua
level: Information
configpath: ".luarc.json"
neodev-version: stable
- name: Luacheck linter
uses: lunarmodules/luacheck@v1
with:
args: lua --config .luacheckrc
release:
name: Release
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- luacheck
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: simple
package-name: fzfx.nvim
- uses: actions/checkout@v4
- uses: rickstaa/action-create-tag@v1
if: ${{ steps.release.outputs.release_created }}
with:
tag: stable
message: "Current stable release: ${{ steps.release.outputs.tag_name }}"
tag_exists_error: false
force_push_tag: true