feat(tmux): add prefix highlight plugin #191
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: build | |
on: [push, pull_request] | |
jobs: | |
ubuntu: | |
name: ubuntu-bootstrap | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: build | |
env: | |
CI_MODE: true | |
run: | | |
make bootstrap | |
make tmux | |
macos: | |
name: macos-bootstrap | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: build | |
env: | |
CI_MODE: true | |
run: | | |
make | |
make bootstrap | |
make dotfiles | |
#make macos | |
#make asdf | |
#make brew | |
make tmux |