-
Notifications
You must be signed in to change notification settings - Fork 53
commitlint #329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
commitlint #329
Changes from all commits
c2c056e
a46824e
fa930bc
b9132ba
99baa20
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -49,6 +49,26 @@ jobs: | |||||
| --health-retries 5 | ||||||
| steps: | ||||||
| - uses: actions/checkout@v6 | ||||||
| - uses: actions/setup-node@v6 | ||||||
| with: | ||||||
| node-version-file: package.json | ||||||
| - uses: oven-sh/setup-bun@v2 | ||||||
| - run: bun ci | ||||||
| - run: npm ci | ||||||
| - run: bun run ci:bun | ||||||
| # https://commitlint.js.org/guides/ci-setup.html | ||||||
| commitlint: | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v6 | ||||||
| with: | ||||||
| fetch-depth: 0 | ||||||
| - uses: actions/setup-node@v6 | ||||||
| with: | ||||||
| node-version-file: package.json | ||||||
| - run: npm install -D @commitlint/cli @commitlint/config-conventional | ||||||
|
jamescmartinez marked this conversation as resolved.
|
||||||
| - run: npm install -D @commitlint/cli @commitlint/config-conventional | |
| - run: npm ci |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,3 @@ | ||||||||
| #!/usr/bin/env sh | ||||||||
|
||||||||
| #!/usr/bin/env sh | |
| #!/usr/bin/env sh | |
| . "$(dirname -- "$0")/_/husky.sh" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export default { extends: ["@commitlint/config-conventional"] }; |
Uh oh!
There was an error while loading. Please reload this page.