feat(workflows): use node20 #18
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: Tmux-style Plugin Tests | |
on: | |
push: | |
branches: [main, v3-dev] | |
pull_request: | |
branches: [main, v3-dev] | |
jobs: | |
test-check-colorscheme: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y tmux | |
- name: Run check colorscheme tests | |
run: bash tests/test_check_colorscheme.sh | |
shell: bash | |
test-parse-widgets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y tmux | |
- name: Run parse widgets tests | |
run: bash tests/test_parse_widgets.sh | |
shell: bash | |
test-set-widget-options: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y tmux | |
- name: Run widget options tests | |
run: bash tests/test_set_widget_options.sh | |
shell: bash |