Skip to content

Initial release #6

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

Merged
merged 22 commits into from
Dec 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fbd39f2
refactor(commit-convention): started extracting the convention scaffo…
travi Mar 16, 2019
d12ad2c
refactor(commitlint): moved the config file creation to the proper sc…
travi Mar 17, 2019
5ece410
feat(scripts): improved the open/closedness of building the scripts list
travi Mar 19, 2019
3b0a9f7
refactor(commit-convention): extracted husky and commitizen scaffolding
travi Mar 28, 2019
119395d
refactor(badges): moved the commit convention badges definition
travi Apr 28, 2019
3cd5aa7
test(co-location): moved unit tests to be with the source files
travi Nov 10, 2019
c0e7891
fix(dependencies): eliminated the dependence on mz
travi Feb 18, 2020
0629f75
refactor(commit-convention): merged sub-results with deepmerge instea…
travi Dec 6, 2020
73bc5ca
refactor(commitizen): defined the badge in the commitizen scaffolder
travi Dec 6, 2020
3547ff6
feat(commit-convention): prevented configuration for sub-projects
travi Dec 7, 2020
906d117
feat(package-manager): defined the `pre-commit` hook for project veri…
travi Jan 11, 2021
ed80227
fix(husky): generated husky config to follow the modern format
travi Mar 30, 2021
7357c8b
refactor(commit-convention): grouped commitizen with the rest of the …
travi Jul 20, 2021
03819e3
refactor(commit-convention): consolidated the semantic-release detail…
travi Nov 27, 2021
dcdad00
refactor(husky): moved initial scaffolding of husky to verification
travi Dec 2, 2021
cead23d
Merge branch 'alpha' into convention
travi Dec 2, 2021
9ba10cf
fix(dependencies): defined prod deps and got verification back to pas…
travi Dec 2, 2021
3b8d31d
test(canary): removed the canary test since there are real tests in p…
travi Dec 2, 2021
71e8afc
fix(commit-convention): exported the commit-convention functionality …
travi Dec 2, 2021
9694ab9
ci(node-versions): defined the version matrix to test against
travi Dec 2, 2021
eb44498
docs(example): provided an empty `configs` object to satisfy the mini…
travi Dec 2, 2021
c898005
test(coverage): configured codecov
travi Dec 3, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,27 @@ jobs:
- run: npm test
- name: Upload coverage data to Codecov
run: npm run coverage:report
verify-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '12.20'
- 12
- 14
- 16
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- uses: bahmutov/npm-install@v1
- run: npm test
release:
needs: verify
needs:
- verify
- verify-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ form8ion plugin for managing tools related to commit conventions
<!--status-badges start -->

[![Node CI Workflow Status][github-actions-ci-badge]][github-actions-ci-link]
[![Codecov][coverage-badge]][coverage-link]

<!--status-badges end -->

Expand All @@ -13,6 +14,8 @@ form8ion plugin for managing tools related to commit conventions
* [Usage](#usage)
* [Installation](#installation)
* [Example](#example)
* [Import](#import)
* [Execute](#execute)
* [Contributing](#contributing)
* [Dependencies](#dependencies)
* [Verification](#verification)
Expand Down Expand Up @@ -45,7 +48,7 @@ import {scaffold} from '@form8ion/commit-convention';

```javascript
(async () => {
await scaffold({projectRoot: process.cwd()});
await scaffold({projectRoot: process.cwd(), configs: {}});
})();
```

Expand Down Expand Up @@ -109,3 +112,7 @@ $ npm test
[runkit-link]: https://npm.runkit.com/@form8ion/commit-convention

[runkit-badge]: https://badge.runkitcdn.com/@form8ion/commit-convention.svg

[coverage-link]: https://codecov.io/github/form8ion/commit-convention

[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/commit-convention.svg
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ stubbedFs();
// #### Execute

(async () => {
await scaffold({projectRoot: process.cwd()});
await scaffold({projectRoot: process.cwd(), configs: {}});
})();
Loading