Skip to content

Commit e95d676

Browse files
committed
run latest scrape before building
1 parent 4d17250 commit e95d676

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/gh-pages.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,17 @@ jobs:
3131
with:
3232
node-version: ${{ vars.NODE_VERSION }}
3333
cache: "npm"
34+
- name: Set up Python
35+
uses: actions/setup-python@v6
36+
with:
37+
python-version: ${{ vars.PYTHON_VERSION }}
38+
cache: "pip"
3439
- name: Install dependencies
35-
run: npm ci
40+
run: |
41+
npm ci
42+
pip install .
43+
- name: Run scrapers
44+
run: python3 -m scrapers
3645
- name: Check/generate types
3746
run: npm run typecheck
3847
- name: Build

0 commit comments

Comments
 (0)