File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 11---
2- # docs at: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
2+ # file format documented at:
3+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
34name : CI
45
56on : [push, pull_request]
67
78jobs :
8- # TODO: check project builds/compiles correctly, maybe with tsc TypeScript compiler ?
9- # TODO: add tests including coverage
9+ # TODO: check project builds/compiles correctly? maybe with tsc?
10+ # TODO: add tests including coverage (jest and mocha/chai?)
1011
1112 lint_src_files :
1213 name : Lint source files
@@ -119,9 +120,11 @@ jobs:
119120 runs-on : ubuntu-latest
120121 steps :
121122 - uses : actions/checkout@v4
122- - name : Check the commits conform to the Conventional Commits specification with commitlint
123+ - name : >
124+ Check the commits conform to the Conventional
125+ Commits specification with commitlint
123126 uses: wagoid/commitlint-github-action@v5
124127
125- # TODO: check commits squashed into one (i.e. all changes in a PR are in one commit after last one in primary branch)
126- # TODO: use semver to increase version numbers and update changelog automatically
127- # TODO: publish new release automatically if version increased and CI passes (use release-please?)
128+ # TODO: check PRs have all changes (squashed) in(to) 1 commit
129+ # TODO: make semver automatically bump version num and update changelog
130+ # TODO: publish new release if version num bumped and CI passes
File renamed without changes.
Original file line number Diff line number Diff line change 1+ ---
12name : " 🚀 publish"
23
34on :
1516 registry-url : https://registry.npmjs.org/
1617 - run : npm publish
1718 env :
18- NODE_AUTH_TOKEN : ${{secrets.NPM_ACCESS_TOKEN}}
19+ NODE_AUTH_TOKEN : ${{secrets.NPM_ACCESS_TOKEN}}
You can’t perform that action at this time.
0 commit comments