We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8618bbd + 2097ce0 commit 10177e3Copy full SHA for 10177e3
2 files changed
.github/workflows/release.yml
@@ -22,12 +22,6 @@ jobs:
22
23
- run: pnpm install --frozen-lockfile
24
25
- - run: pnpm lint
26
-
27
- - run: pnpm build
28
29
- - run: pnpm test
30
31
- name: git config
32
run: |
33
git config user.name "${GITHUB_ACTOR}"
.release-it.json
@@ -12,5 +12,10 @@
12
"github": {
13
"release": true,
14
"tokenRef": "GITHUB_AUTH"
15
+ },
16
+ "hooks": {
17
+ "before:init": ["pnpm lint", "pnpm test:run"],
18
+ "after:bump": "npm run build",
19
+ "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
20
}
21
0 commit comments