Skip to content

Commit a169ea6

Browse files
authored
Merge pull request #29 from iamwill123/updates
Updates
2 parents e0dc0e9 + 7759bd6 commit a169ea6

File tree

5 files changed

+51
-1
lines changed

5 files changed

+51
-1
lines changed

.github/FUNDING.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
custom:
2+
[
3+
"https://paypal.me/iamwillbk?country.x=US&locale.x=en_US",
4+
"https://venmo.com/iamwillus?txn=pay&amount=5&note=Thanks%20for%20your%20support!",
5+
]

.github/ISSUE_TEMPLATE/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/run-unit-tests.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules/
22
*.map
3-
*.yml
43
.npmignore
54
.DS_Store

0 commit comments

Comments
 (0)