File tree Expand file tree Collapse file tree 6 files changed +129
-0
lines changed Expand file tree Collapse file tree 6 files changed +129
-0
lines changed Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ # github: [afshinm]
4
+ patreon : # Replace with a single Patreon username
5
+ open_collective : gridjs
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
+ ---
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
+ # Number of days of inactivity before an issue becomes stale
2
+ daysUntilStale : 30
3
+ # Number of days of inactivity before a stale issue is closed
4
+ daysUntilClose : 7
5
+ # Issues with these labels will never be considered stale
6
+ exemptLabels :
7
+ - pinned
8
+ - security
9
+ - feature
10
+ - roadmap
11
+ - bug
12
+ # Label to use when marking an issue as stale
13
+ staleLabel : wontfix
14
+ # Comment to post when marking an issue as stale. Set to `false` to disable
15
+ markComment : >
16
+ This issue has been automatically marked as stale because it has not had
17
+ recent activity. It will be closed if no further activity occurs. Thank you
18
+ for your contributions.
19
+ # Comment to post when closing a stale issue. Set to `false` to disable
20
+ closeComment : false
Original file line number Diff line number Diff line change
1
+ name : Compressed Size
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - uses : preactjs/compressed-size-action@v2
13
+ with :
14
+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change
1
+ name : Node.js CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ strategy :
11
+ matrix :
12
+ node-version : [11.x, 12.x, 13.x, 14.x]
13
+
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Use Node.js ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v1
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
20
+ - run : npm install
21
+ - run : npm run lint
22
+ - run : npm run build
23
+ - run : npm test
24
+ env :
25
+ CI : true
You can’t perform that action at this time.
0 commit comments