File tree 3 files changed +12
-8
lines changed
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
---
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
3
4
name : CI
4
5
5
6
on : [push, pull_request]
6
7
7
8
jobs :
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?)
10
11
11
12
lint_src_files :
12
13
name : Lint source files
@@ -119,9 +120,11 @@ jobs:
119
120
runs-on : ubuntu-latest
120
121
steps :
121
122
- 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
123
126
uses: wagoid/commitlint-github-action@v5
124
127
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
+ ---
1
2
name : " 🚀 publish"
2
3
3
4
on :
15
16
registry-url : https://registry.npmjs.org/
16
17
- run : npm publish
17
18
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