File tree 5 files changed +51
-1
lines changed
5 files changed +51
-1
lines changed Original file line number Diff line number Diff line change
1
+ custom :
2
+ [
3
+ " https://paypal.me/iamwillbk?country.x=US&locale.x=en_US" ,
4
+ " https://venmo.com/iamwillus?txn=pay&amount=5¬e=Thanks%20for%20your%20support!" ,
5
+ ]
Original file line number Diff line number Diff line change
1
+ blank_issues_enabled : true
2
+ issue_templates :
3
+ - name : Bug Report
4
+ about : Report a bug in the software.
5
+ filename : bug_report.md
6
+ - name : Feature Request
7
+ about : Suggest a new feature or enhancement.
8
+ filename : feature_request.md
9
+ - name : Maintenance Request
10
+ about : Request maintenance or improvements.
11
+ filename : maintenance_request.md
12
+ - name : Idea Proposal
13
+ about : Submit an idea or proposal.
14
+ filename : idea_proposal.md
Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " npm"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " daily"
Original file line number Diff line number Diff line change
1
+ name : Run Unit Tests
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ test :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Use Node.js
15
+ uses : actions/setup-node@v2
16
+ with :
17
+ node-version : " 16.15.1"
18
+ cache : " yarn"
19
+ - name : Install Dependencies
20
+ run : yarn install
21
+ - name : Run Unit Tests
22
+ run : yarn test:coverage
23
+ - name : Upload coverage to Codecov
24
+ uses : codecov/codecov-action@v2
25
+ with :
26
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 1
1
node_modules /
2
2
* .map
3
- * .yml
4
3
.npmignore
5
4
.DS_Store
You can’t perform that action at this time.
0 commit comments