Skip to content

Commit d09765b

Browse files
committed
build: try installing yt-dlp before test
1 parent fbf2b3d commit d09765b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/test.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ jobs:
1212
matrix:
1313
node-version: [22.x, 23.x]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20+
- uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.13'
23+
cache: 'pip'
24+
- run: pip install yt-dlp
2025
- run: npm ci
21-
- run: npm test
26+
- run: npm test

0 commit comments

Comments
 (0)