Move some stuff out to keys, make more plugins lazy #216
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: docker-linux | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dockerfile: | |
- Dockerfile.arch | |
- Dockerfile.ubuntu | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
docker build -t dotfiles -f "${{ matrix.dockerfile }}" . | |
- name: Show package versions | |
run: | | |
docker \ | |
run \ | |
--rm \ | |
dotfiles \ | |
zsh -c "nvim --version \ | |
&& zsh --version \ | |
&& tmux -V \ | |
&& rg --version \ | |
&& git --version \ | |
&& git --version \ | |
&& \$HOME/.local/share/fnm/fnm exec --using=20 node --version \ | |
&& \$HOME/.local/share/fnm/fnm exec --using=20 npm list --location=global \ | |
" |