Skip to content

Commit 0c61eeb

Browse files
authored
feat: initial implementation (#1)
* feat: initial implementation * ci: fix releaserc * chore: fix version
1 parent cc3f938 commit 0c61eeb

40 files changed

+9442
-0
lines changed

.boilerplate-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
813c05c22fe6ab819ad616e30ae2c8f86efadb35

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 2
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
15+
16+
[*.gradle]
17+
indent_size = 4

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

.github/workflows/code.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Code"
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
- ready_for_review
10+
11+
jobs:
12+
code-quality:
13+
name: "Code quality"
14+
uses: technology-studio/github-workflows/.github/workflows/_code-quality.yml@main
15+
secrets: inherit
16+
type-check:
17+
name: "Type check"
18+
uses: technology-studio/github-workflows/.github/workflows/_type-check.yml@main
19+
secrets: inherit

.github/workflows/pr.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "PR"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
semantic-title:
12+
name: "Semantic title"
13+
uses: technology-studio/github-workflows/.github/workflows/_semantic-title.yml@main
14+
secrets: inherit

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
release:
9+
name: '/'
10+
uses: technology-studio/github-workflows/.github/workflows/_release.yml@main
11+
secrets: inherit
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Resolve yarn.lock
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
resolve-yarn-lock-on-comment:
9+
name: 'Resolve yarn.lock'
10+
if: contains(github.event.comment.body, '/resolve yarn.lock')
11+
uses: technology-studio/github-workflows/.github/workflows/_resolve-yarn-lock.yml@main
12+
secrets: inherit
13+
with:
14+
pr_number: ${{ github.event.issue.number }}
15+
repo: ${{ github.repository }}

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 'Test'
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
- ready_for_review
10+
11+
jobs:
12+
unit:
13+
name: 'Unit test'
14+
uses: technology-studio/github-workflows/.github/workflows/_unit-test.yml@main
15+
secrets: inherit

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
.npmrc
5+
6+
# node.js
7+
#
8+
node_modules/
9+
.eslintcache
10+
npm-debug.log
11+
yarn-error.log
12+
lib
13+
coverage
14+
*.tgz

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

0 commit comments

Comments
 (0)