File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 15
15
node_version : [18.x, 20.x, 21.x]
16
16
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
20
20
- name : setup Node.js v${{ matrix.node_version }}
21
21
uses : actions/setup-node@v4
@@ -31,18 +31,30 @@ jobs:
31
31
npm run build --if-present
32
32
npm run test
33
33
34
- - name : Report Coveralls
34
+ - name : Coveralls Parallel
35
35
uses : coverallsapp/github-action@v2
36
36
with :
37
+ flag-name : run-${{ join(matrix.*, '-') }}
38
+ parallel : true
37
39
github-token : ${{ secrets.GITHUB_TOKEN }}
38
40
39
41
- name : cache node modules
40
- uses : actions/cache@v3
42
+ uses : actions/cache@v4
41
43
with :
42
44
path : ~/.npm
43
45
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
44
46
restore-keys : |
45
47
${{ runner.os }}-node-
46
48
49
+ finish :
50
+ needs : test
51
+ if : ${{ always() }}
52
+ runs-on : ubuntu-latest
53
+ steps :
54
+ - name : Coveralls Finished
55
+ uses : coverallsapp/github-action@v2
56
+ with :
57
+ parallel-finished : true
58
+ carryforward : " run-18.x,run-20.x,run-21.x"
47
59
48
60
Original file line number Diff line number Diff line change 2
2
"imports" : {
3
3
"cross-fetch" : " ./src/deno/cross-fetch.js" ,
4
4
"html-entities" : " https://esm.sh/html-entities@2.4.0" ,
5
- "fast-xml-parser" : " https://esm.sh/fast-xml-parser@4.3.2 " ,
5
+ "fast-xml-parser" : " https://esm.sh/fast-xml-parser@4.3.3 " ,
6
6
"bellajs" : " https://esm.sh/bellajs@11.1.2"
7
7
}
8
8
}
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 7.0.8 " ,
2
+ "version" : " 7.0.9 " ,
3
3
"name" : " @extractus/feed-extractor" ,
4
4
"description" : " To read and normalize RSS/ATOM/JSON feed data" ,
5
5
"homepage" : " https://extractor-demos.pages.dev" ,
41
41
"dependencies" : {
42
42
"bellajs" : " ^11.1.2" ,
43
43
"cross-fetch" : " ^4.0.0" ,
44
- "fast-xml-parser" : " ^4.3.2 " ,
44
+ "fast-xml-parser" : " ^4.3.3 " ,
45
45
"html-entities" : " ^2.4.0"
46
46
},
47
47
"devDependencies" : {
48
- "esbuild" : " ^0.19.8 " ,
49
- "eslint" : " ^8.55 .0" ,
48
+ "esbuild" : " ^0.19.11 " ,
49
+ "eslint" : " ^8.56 .0" ,
50
50
"https-proxy-agent" : " ^7.0.2" ,
51
51
"jest" : " ^29.7.0" ,
52
- "nock" : " ^13.4 .0"
52
+ "nock" : " ^13.5 .0"
53
53
},
54
54
"keywords" : [
55
55
" extractor" ,
You can’t perform that action at this time.
0 commit comments