Skip to content

Commit cd8f57a

Browse files
committed
ci: move commitlint into its own separate workflow
This way it doesn't prevent other tests from running
1 parent 08891ce commit cd8f57a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
with:
2222
cache: 'npm'
2323
node-version-file: '.nvmrc'
24-
- uses: wagoid/commitlint-github-action@9763196e10f27aef304c9b8b660d31d97fce0f99 # v5
2524
- name: Debug info
2625
run: |
2726
cat <<EOF

.github/workflows/commitlint.yml

Lines changed: 9 additions & 0 deletions
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

0 commit comments

Comments
 (0)