Update test NodeJS to later version #46
Workflow file for this run
This file contains hidden or 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: Install latest release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: Install throttle | |
| run: npm install @sitespeed.io/throttle -g | |
| - name: Install dependencies | |
| run: sudo apt-get install -y net-tools | |
| - name: Show interfaces | |
| run: sudo ip r | |
| - name: Show version | |
| run: throttle --version | |
| - name: Test cable | |
| run: throttle cable |