Helix: Add +/= to quickly go to diagnostics #213
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: CI | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node (for installing Prettier) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Check installed Vim | |
run: vim --version | |
- name: Install shfmt | |
run: curl -sS https://webi.sh/shfmt | sh | |
- name: Install Prettier | |
run: npm install --location=global prettier | |
- name: Install shellcheck | |
run: sudo apt install shellcheck | |
- name: Check format | |
run: make check-format | |
- name: Lint | |
run: make lint | |
- name: Test install | |
run: ./dotfiles_install | |
- name: Test update | |
run: ./dotfiles_update |