Skip to content

Commit 128f81e

Browse files
authored
Merge pull request #77 from scratchfoundation/commitlint
Add commitlint
2 parents 0b9570e + 289afe3 commit 128f81e

File tree

7 files changed

+1462
-73
lines changed

7 files changed

+1462
-73
lines changed

.github/workflows/build.yml

-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ jobs:
1515
- name: Run Tests
1616
run: npm test
1717
- name: Semantic Release
18-
if: github.ref_name == 'master'
1918
env:
2019
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2120
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2221
run: npx --no -- semantic-release
23-
24-
25-

.github/workflows/commitlint.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Lint commit messages
2+
on: [pull_request]
3+
4+
jobs:
5+
commitlint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
9+
- uses: wagoid/commitlint-github-action@5ce82f5d814d4010519d15f0552aec4f17a1e1fe # v5

.husky/.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.husky/commit-msg

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx --no-install commitlint --edit "$1"

commitlint.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
ignores: [message => message.startsWith('chore(release):')]
4+
};

0 commit comments

Comments
 (0)