File tree Expand file tree Collapse file tree 4 files changed +52
-11
lines changed Expand file tree Collapse file tree 4 files changed +52
-11
lines changed Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ github : # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
+ patreon : posthtml
5
+ open_collective : posthtml
6
+ ko_fi : # Replace with a single Ko-fi username
7
+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay : # Replace with a single Liberapay username
10
+ issuehunt : # Replace with a single IssueHunt username
11
+ otechie : # Replace with a single Otechie username
12
+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change
1
+ name : Actions Status
2
+ on :
3
+ pull_request :
4
+ types : [opened, synchronize]
5
+ branches :
6
+ - master
7
+ env :
8
+ CI : true
9
+
10
+ jobs :
11
+ run :
12
+ name : Node ${{ matrix.node }} on ${{ matrix.os }}
13
+ runs-on : ${{ matrix.os }}
14
+
15
+ strategy :
16
+ fail-fast : false
17
+ matrix :
18
+ node : [10, 12, 14]
19
+ os : [ubuntu-latest]
20
+
21
+ steps :
22
+ - name : Clone repository
23
+ uses : actions/checkout@v2
24
+
25
+ - name : Set Node.js version
26
+ uses : actions/setup-node@v1
27
+ with :
28
+ node-version : ${{ matrix.node }}
29
+
30
+ - name : Install npm dependencies
31
+ run : npm ci
32
+
33
+ - name : Run tests
34
+ run : npm run test
35
+
36
+ - name : Run Coveralls
37
+ uses : coverallsapp/github-action@master
38
+ with :
39
+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 16
16
},
17
17
"scripts" : {
18
18
"version" : " conventional-changelog -i changelog.md -s -r 0 && git add changelog.md" ,
19
- "test" : " c8 mocha" ,
20
- "coverage" : " nyc report --reporter=text-lcov | coveralls"
19
+ "test" : " c8 mocha"
21
20
},
22
21
"repository" : " posthtml/posthtml-parser" ,
23
22
"author" : " Ivan Voischev <voischev.ivan@ya.ru>" ,
You can’t perform that action at this time.
0 commit comments