CI: Check that JSDoc comments are valid (#1328)

Also, fix a JSDoc comment.
This commit is contained in:
Daniel Huigens 2021-06-14 11:15:37 +02:00 committed by GitHub
parent 1484df9b8f
commit df2240ba08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

19
.github/workflows/docs.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Documentation
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: JSDoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm ci
- run: npm run docs

View File

@ -217,7 +217,7 @@ export async function createSignaturePacket(dataToSign, privateKey, signingKeyPa
* @param {Object} dest
* @param {String} attr
* @param {Date} [date] - date to use for signature expiration check, instead of the current time
* @param {(SignaturePacket) => Boolean} [checkFn] - signature only merged if true
* @param {Function} [checkFn] - signature only merged if true
*/
export async function mergeSignatures(source, dest, attr, date = new Date(), checkFn) {
source = source[attr];