Skip to content

Commit f2775d5

Browse files
committedAug 26, 2021
Initial commit
0 parents  commit f2775d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+49908
-0
lines changed
 

‎.commitlintrc.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"],
3+
"rules": {
4+
"scope-enum": [
5+
2,
6+
"always",
7+
[
8+
"components",
9+
"constants",
10+
"hooks",
11+
"icons",
12+
"images",
13+
"layouts",
14+
"pages",
15+
"styles",
16+
"templates",
17+
"utils"
18+
]
19+
]
20+
}
21+
}

‎.drone.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
kind: pipeline
2+
name: default
3+
4+
steps:
5+
- name: tests
6+
image: node:12.14.0-alpine3.11
7+
environment:
8+
GATSBY_DEFAULT_SITE_URL: http://localhost
9+
commands:
10+
- npm install
11+
- npm run build

0 commit comments

Comments
 (0)
Please sign in to comment.