File tree 6 files changed +1382
-1243
lines changed
Filter options
6 files changed +1382
-1243
lines changed
Original file line number Diff line number Diff line change 1
1
# These are supported funding model platforms
2
2
3
3
github : # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
- patreon : # Replace with a single Patreon username
5
- open_collective : # Replace with a single Open Collective username
4
+ patreon : posthtml
5
+ open_collective : posthtml
6
6
ko_fi : # Replace with a single Ko-fi username
7
7
tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
8
community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
9
liberapay : # Replace with a single Liberapay username
10
10
issuehunt : # Replace with a single IssueHunt username
11
11
otechie : # Replace with a single Otechie username
12
- custom : ['https://paypal.me/cossssmin', 'https://www.amazon.co.uk/hz/wishlist/ls/3I8KTU4FLQIZ1']
12
+ custom : # Replace with an array of URLs
Original file line number Diff line number Diff line change
1
+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+ name : Node.js CI
5
+
6
+ on :
7
+ push :
8
+ branches : [master]
9
+ pull_request :
10
+ branches : [master]
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : ubuntu-latest
15
+
16
+ strategy :
17
+ matrix :
18
+ node-version : [10, 12, 14]
19
+
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - name : Use Node.js ${{ matrix.node-version }}
23
+ uses : actions/setup-node@v1
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+ - run : npm install
27
+ - run : npm test
28
+ env :
29
+ CI : true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments