File tree Expand file tree Collapse file tree 7 files changed +20270
-231
lines changed Expand file tree Collapse file tree 7 files changed +20270
-231
lines changed Original file line number Diff line number Diff line change
1
+ name : Bug Report
2
+ description : File a bug report
3
+ title : " [Bug]: "
4
+ labels : ["bug"]
5
+ assignees :
6
+ - android69420
7
+ body :
8
+ - type : markdown
9
+ attributes :
10
+ value : |
11
+ Thanks for taking the time to fill out this bug report!
12
+ - type : textarea
13
+ id : what-happened
14
+ attributes :
15
+ label : What happened?
16
+ description : Also tell us, what did you expect to happen?
17
+ placeholder : Tell us what you see!
18
+ value : " A bug happened!"
19
+ validations :
20
+ required : true
21
+ - type : textarea
22
+ id : Reproduce
23
+ attributes :
24
+ label : To reproduce the behavior?
25
+ description : Steps to reproduce the behavior.
26
+ placeholder : opened store
27
+ value : " reproduce!"
28
+ validations :
29
+ required : true
30
+ - type : dropdown
31
+ id : browsers
32
+ attributes :
33
+ label : What browser are you seeing the problem on?
34
+ multiple : false
35
+ options :
36
+ - Firefox
37
+ - Chrome
38
+ - Safari
39
+ - Microsoft Edge
40
+ - Other Browser
41
+ validations :
42
+ required : true
43
+
Original file line number Diff line number Diff line change
1
+ name : issue-text
2
+
3
+ on :
4
+ issues :
5
+ types : [opened]
6
+
7
+ jobs :
8
+ comment :
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
12
+
13
+ with :
14
+ message : " Hey, thank you for creating an issue. We will normally respond within 24 hours."
15
+ GITHUB_TOKEN : ${{ secrets.BOT }}
16
+
17
+ - uses : stefanbuck/github-issue-parser@v2
18
+ id : issue-parser
19
+ with :
20
+ template-path : .github/ISSUE_TEMPLATE/bug_report.yml
21
+
22
+ - run : echo '${{ steps.issue-parser.outputs.jsonString }}'
23
+
24
+ - run : echo ${{ steps.issue-parser.outputs.issueparser_what_browser_are_you_seeing_the_problem_on }}
25
+
26
+ - uses : actions-ecosystem/action-add-labels@v1
27
+ with :
28
+ labels : ${{ steps.issue-parser.outputs.issueparser_what_browser_are_you_seeing_the_problem_on }}
29
+ github_token : ${{ secrets.BOT }}
30
+
Original file line number Diff line number Diff line change 1
- name : Build
1
+ name : Build & Deploy
2
2
3
3
on :
4
4
push :
5
- branches :
6
- - master
7
- pull_request :
8
- branches :
9
- - master
5
+ branches : [master]
10
6
workflow_dispatch :
11
7
12
8
jobs :
13
- build :
14
- name : Build
9
+ Build-Deploy :
15
10
runs-on : ubuntu-latest
16
11
17
12
steps :
18
13
- name : Checkout code
19
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
20
15
21
16
- name : Set up Node.js
22
- uses : actions/setup-node@v1
17
+ uses : actions/setup-node@v3
23
18
with :
24
19
node-version : ' 16.6.1'
20
+ cache : npm
25
21
26
- - name : Cache Node.js modules
27
- uses : actions/cache@v2
28
- with :
29
- path : ~/.npm
30
- key : ${{ runner.OS }}-noder-${{ hashFiles('**/package-lock.json') }}
31
- restore-keys : |
32
- ${{ runner.OS }}-node-
33
- ${{ runner.OS }}-
34
-
35
- - name : Install dependencies
36
- run : CI=false npm install
37
-
38
- - name : Build project
39
- run : CI=false npm run build
40
-
41
- - name : Upload production-ready build files
42
- uses : actions/upload-artifact@v2
43
- with :
44
- name : production-files
45
- path : ./build
46
-
47
- deploy :
48
- name : Deploy
49
- needs : build
50
- runs-on : ubuntu-latest
51
- if : github.ref == 'refs/heads/master'
52
-
53
- steps :
54
- - name : Download artifact
55
- uses : actions/download-artifact@v2
56
- with :
57
- name : production-files
58
- path : ./build
22
+ - name : Build
23
+ run : |
24
+ CI=false npm install
25
+ CI=false npm run build
59
26
60
27
- name : Deploy to gh-pages
61
28
uses : peaceiris/actions-gh-pages@v3
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ An open-source project that aims to provide an indistinguishably accurate experi
53
53
- 6 weeks (without gaps)
54
54
55
55
56
- 3 . Have ran into problems during development?
57
- - Duhh. More than dozen big ones and hundreds of small problems.
56
+ 3 . Have you ran into problems during development?
57
+ - Duhh. More than dozen big ones and hundreds of small problems ( [ more info ] ( timeline.md ) ) .
58
58
59
59
60
60
4 . Can I contribute?
You can’t perform that action at this time.
0 commit comments