Skip to content

Commit 754d54d

Browse files
authored
Merge pull request #9 from xt0x/refactor/ci-and-directories
Refactor test directory and CI configuration for integration
2 parents 003ea82 + e5133cb commit 754d54d

25 files changed

Lines changed: 26 additions & 8 deletions

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,4 @@ jobs:
1616
node-version: 24
1717
cache: pnpm
1818
- run: pnpm install --frozen-lockfile
19-
- run: pnpm lint
20-
- run: pnpm typecheck
21-
- run: pnpm build
19+
- run: pnpm run ci
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Commit message rules
2+
3+
- Write every commit message in English.
4+
- Create exactly one commit message.
5+
- Use this format exactly: <type>(<scope>): <subject>
6+
- Scope is mandatory for every commit.
7+
- Never omit the scope.
8+
- Use lowercase for type and scope.
9+
- Write the subject in imperative mood.
10+
- Keep the message to one line and describe the change concisely.

.vscode/extensions.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"recommendations": ["biomejs.biome", "JuanBlanco.solidity"]
2+
"recommendations": [
3+
"biomejs.biome",
4+
"JuanBlanco.solidity",
5+
"GitHub.copilot",
6+
"GitHub.copilot-chat"
7+
]
38
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"source.fixAll.biome": "explicit",
66
"source.organizeImports.biome": "explicit"
77
},
8+
"github.copilot.chat.commitMessageGeneration.instructions": [
9+
{
10+
"file": ".vscode/commit-message-instructions.md"
11+
}
12+
],
813
"[solidity]": {
914
"editor.defaultFormatter": "JuanBlanco.solidity"
1015
}
File renamed without changes.

0 commit comments

Comments
 (0)