Skip to content

Commit 6a30d46

Browse files
committed
Run with Readability-server
1 parent 649e59f commit 6a30d46

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/analyze.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,22 @@ jobs:
5151
run: |
5252
python -m nltk.downloader stopwords
5353
54+
- uses: actions/setup-node@v4
55+
with:
56+
node-version: '22'
57+
cache: 'npm'
58+
cache-dependency-path: readability-server/package-lock.json
59+
60+
- name: Install readability-server dependencies
61+
run: |
62+
cd readability-server
63+
npm ci
64+
65+
- name: Run readability-server
66+
run: |
67+
cd readability-server
68+
npm start &
69+
5470
- name: Analyze!
5571
run: |
5672
# FIXME: set up readability running in a background process.
@@ -61,8 +77,7 @@ jobs:
6177
--after '${{ inputs.from || '240' }}' \
6278
--before '${{ inputs.to || '0' }}' \
6379
--threshold '${{ inputs.threshold || '0.25' }}' \
64-
--pattern '${{ inputs.pattern || env.TEST_PATTERN }}' \
65-
--skip-readability
80+
--pattern '${{ inputs.pattern || env.TEST_PATTERN }}'
6681
6782
- name: Upload Results
6883
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)