📦️ update packages #2090
Workflow file for this run
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: test | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 7.27.0 | |
- name: node tests | |
working-directory: ./test | |
run: | | |
pnpm install | |
pnpm test | |
test-dotme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: | |
run: | | |
sudo apt-get install stow | |
rm ~/.bashrc | |
rm ~/.bash_profile | |
./bin/dotme -i "shim|stow" | |
./start | |
. $HOME/.bash_profile | |
. $HOME/.bashrc | |
./bin/dotme verify | |
test-vim: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
neovim: [false, true] | |
version: [stable] | |
fail-fast: false | |
steps: | |
- uses: actions/[email protected] | |
- name: checkout vader.vim | |
uses: actions/[email protected] | |
with: | |
repository: junegunn/vader.vim | |
path: ./test/vim/tmp/vim/plugins/vader.vim | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
neovim: ${{ matrix.neovim }} | |
version: ${{ matrix.version }} | |
- name: test | |
env: | |
VIM_COMMAND: ${{ steps.vim.outputs.executable }} | |
working-directory: ./test/vim | |
run: | | |
echo $VIM_COMMAND | |
make test |