File tree 5 files changed +131
-0
lines changed 5 files changed +131
-0
lines changed Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ github : [gabriel-logan] # 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
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
+ lfx_crowdfunding : # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12
+ polar : # Replace with a single Polar username
13
+ buy_me_a_coffee : gabriellogan
14
+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug report
3
+ about : Create a report to help us improve
4
+ title : ' '
5
+ labels : ' '
6
+ assignees : ' '
7
+
8
+ ---
9
+
10
+ ** Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ ** To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1 . Go to '...'
16
+ 2 . Click on '....'
17
+ 3 . Scroll down to '....'
18
+ 4 . See error
19
+
20
+ ** Expected behavior**
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ ** Screenshots**
24
+ If applicable, add screenshots to help explain your problem.
25
+
26
+ ** Desktop (please complete the following information):**
27
+ - OS: [ e.g. iOS]
28
+ - Browser [ e.g. chrome, safari]
29
+ - Version [ e.g. 22]
30
+
31
+ ** Smartphone (please complete the following information):**
32
+ - Device: [ e.g. iPhone6]
33
+ - OS: [ e.g. iOS8.1]
34
+ - Browser [ e.g. stock browser, safari]
35
+ - Version [ e.g. 22]
36
+
37
+ ** Additional context**
38
+ Add any other context about the problem here.
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature request
3
+ about : Suggest an idea for this project
4
+ title : ' '
5
+ labels : ' '
6
+ assignees : ' '
7
+
8
+ ---
9
+
10
+ ** Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12
+
13
+ ** Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ ** Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ ** Additional context**
20
+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name : Node.js Package
5
+
6
+ on :
7
+ # Runs on pushes targeting the default branch
8
+ push :
9
+ branches : ["main"]
10
+ paths :
11
+ - " package.json"
12
+
13
+ # Allows you to run this workflow manually from the Actions tab
14
+ workflow_dispatch :
15
+
16
+ jobs :
17
+ publish-npm :
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : actions/setup-node@v3
22
+ with :
23
+ node-version : 20
24
+ registry-url : https://registry.npmjs.org/
25
+ - name : Publish npm
26
+ run : |
27
+ npm install
28
+ npm test
29
+ npm run build
30
+ npm publish
31
+ env :
32
+ NODE_AUTH_TOKEN : ${{secrets.NODE_AUTH_TOKEN}}
Original file line number Diff line number Diff line change
1
+ name : Typescript Pull Request Check
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+
7
+ pull_request :
8
+ branches : [ main ]
9
+
10
+ # Allows you to run this workflow manually from the Actions tab
11
+ workflow_dispatch :
12
+
13
+ jobs :
14
+ checking-pr :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 20
22
+ registry-url : https://registry.npmjs.org/
23
+
24
+ - name : Test
25
+ run : |
26
+ yarn install
27
+ yarn pr-check
You can’t perform that action at this time.
0 commit comments