File tree 5 files changed +107
-0
lines changed
5 files changed +107
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "presets" : [[" @babel/preset-env" ], [" minify" , { "removeUndefined" : false }]]
3
+ }
Original file line number Diff line number Diff line change
1
+ # These are supported funding model platforms
2
+
3
+ github : [supabase] # 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
+ 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
+ name : Node.js CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - name : Build the stack
11
+ run : docker-compose up -d
12
+ - name : Sleep for 30 seconds
13
+ uses : jakejarvis/wait-action@master
14
+ with :
15
+ time : ' 30s'
16
+ - name : Use Node.js 12.x
17
+ uses : actions/setup-node@v1
18
+ with :
19
+ node-version : 12.x
20
+ - run : npm install
21
+ - run : npm run build --if-present
22
+ - run : npm run test:prod
23
+ - run : npm run test:integration
Original file line number Diff line number Diff line change
1
+ # Logs
2
+ logs
3
+ * .log
4
+ npm-debug.log *
5
+
6
+ # Runtime data
7
+ pids
8
+ * .pid
9
+ * .seed
10
+
11
+ # Directory for instrumented libs generated by jscoverage/JSCover
12
+ lib-cov
13
+
14
+ # Coverage directory used by tools like istanbul
15
+ coverage
16
+
17
+ # nyc test coverage
18
+ .nyc_output
19
+
20
+ # Compiled binary addons (http://nodejs.org/api/addons.html)
21
+ build /Release
22
+
23
+ # Dependency directories
24
+ node_modules
25
+ jspm_packages
26
+
27
+ # Optional npm cache directory
28
+ .npm
29
+
30
+ # Optional REPL history
31
+ .node_repl_history
32
+
33
+ # Editors
34
+ .idea
35
+
36
+ # Lib
37
+ lib
38
+
39
+ # npm package lock
40
+ package-lock.json
41
+ yarn.lock
42
+
43
+ others
44
+ .DS_Store
Original file line number Diff line number Diff line change
1
+ * .log
2
+ npm-debug.log *
3
+
4
+ # Coverage directory used by tools like istanbul
5
+ coverage
6
+ .nyc_output
7
+
8
+ # Dependency directories
9
+ node_modules
10
+
11
+ # npm package lock
12
+ package-lock.json
13
+ yarn.lock
14
+
15
+ # project files
16
+ src
17
+ test
18
+ examples
19
+ CHANGELOG.md
20
+ .travis.yml
21
+ .editorconfig
22
+ .eslintignore
23
+ .eslintrc
24
+ .babelrc
25
+ .gitignore
You can’t perform that action at this time.
0 commit comments