File tree 1 file changed +17
-2
lines changed
1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 51
51
run : |
52
52
python -m nltk.downloader stopwords
53
53
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
+
54
70
- name : Analyze!
55
71
run : |
56
72
# FIXME: set up readability running in a background process.
61
77
--after '${{ inputs.from || '240' }}' \
62
78
--before '${{ inputs.to || '0' }}' \
63
79
--threshold '${{ inputs.threshold || '0.25' }}' \
64
- --pattern '${{ inputs.pattern || env.TEST_PATTERN }}' \
65
- --skip-readability
80
+ --pattern '${{ inputs.pattern || env.TEST_PATTERN }}'
66
81
67
82
- name : Upload Results
68
83
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments