Check for problems with configuration files of the npm JavaScript package manager.
This is the version of the workflow for projects using the Task task runner tool.
Install the check-npm-task.yml GitHub Actions workflow to .github/workflows/
Taskfile.yml
- npm tasks.- Install to: repository root (or merge into the existing
Taskfile.yml
).
- Install to: repository root (or merge into the existing
Taskfile.yml
- Validation task.- Install to: repository root (or merge into the existing
Taskfile.yml
).
- Install to: repository root (or merge into the existing
Taskfile.yml
- Utility tasks.- Install to: repository root (or merge into the existing
Taskfile.yml
).
- Install to: repository root (or merge into the existing
Configure the version of Node.js used for development of the project in the env.NODE_VERSION
field of check-npm-task.yml
.
If the project contains npm-managed projects (i.e., a folder containing a package.json
file) in paths other than the root of the repository, add their paths to the job matrices of check-npm-task.yml
at:
jobs.validate.strategy.matrix.project[].path
jobs.check-sync.strategy.matrix.project[].path
Markdown badge:
[](https://github.com/REPO_OWNER/REPO_NAME/actions/workflows/check-npm-task.yml)
Replace the REPO_OWNER
and REPO_NAME
placeholders in the URLs with the final repository owner and name (example).
Asciidoc badge:
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/check-npm-task.yml/badge.svg["Check YAML status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/check-npm-task.yml"]
Define the {repository-owner}
and {repository-name}
attributes and use them throughout the readme (example).
Add CI workflow to check for problems with npm configuration files
On every push and pull request that affects relevant files, and periodically:
- Validate package.json against its JSON schema.
- Check for forgotten package-lock.json syncs.
On every push and pull request that affects relevant files, and periodically:
- Validate [`package.json`](https://docs.npmjs.com/cli/v7/configuring-npm/package-json) against [its JSON schema](https://json.schemastore.org/package.json).
- Check for forgotten [`package-lock.json`](https://docs.npmjs.com/cli/v7/configuring-npm/package-lock-json) syncs.