Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade all packages #326

Merged
merged 17 commits into from
May 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
name: Build and upload binary assets
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
include:
- node-version: 14
- node-version: 16
- os: macos-latest
target: macos
asset_name: vim-doge-macos.tar.gz
Expand All @@ -19,10 +20,10 @@ jobs:
target: linux
asset_name: vim-doge-linux.tar.gz
asset_path: ./bin/vim-doge-linux.tar.gz
- os: windows-latest
target: win
asset_name: vim-doge-win64.zip
asset_path: ./bin/vim-doge-win64.zip
# - os: windows-latest
# target: win
# asset_name: vim-doge-win64.zip
# asset_path: ./bin/vim-doge-win64.zip
runs-on : ${{ matrix.os }}
steps:
- name: Checkout kkoomen/vim-doge
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ jobs:
name: Vim
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
vim-version: [v7.4.2119, head]
node-version: [10, 12, 14]
node-version: [12, 14, 16]
include:
- os: macos-latest
target: macos
- os: ubuntu-latest
target: linux
- os: windows-latest
target: win
# - os: windows-latest
# target: win
runs-on: ${{ matrix.os }}
steps:
- name: Checkout kkoomen/vim-doge
Expand Down
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no -- commitlint --edit "\${1}"
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged --allow-empty
2 changes: 1 addition & 1 deletion ftplugin/lua.vim
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let b:doge_patterns = doge#buffer#get_patterns()
" Matches regular function expressions, definitions and class methods.
" ------------------------------------------------------------------------------
let s:function_and_class_method_pattern = {
\ 'nodeTypes': ['function', 'function_definition'],
\ 'nodeTypes': ['function', 'function_declaration', 'function_definition'],
\ 'parameters': {
\ 'format': '@param {name} !description',
\ },
Expand Down
Loading