@@ -109,6 +109,7 @@ Options:
109109 --excludeTags tag1 tag2 Specify which tags to skip from the lookup (takes priority over includeTags)
110110 Module names are automatically added as tags.
111111 -y, --yarn Install and test the project using yarn instead of npm
112+ --pnpm Install and test the project using pnpm instead of npm
112113```
113114
114115When using a JSON config file, the properties need to be the same as the
@@ -134,13 +135,14 @@ For syntax, see [lookup.json](./lib/lookup.json), the available attributes are:
134135"stripAnsi": true Strip ansi data from output stream of npm
135136"sha": "<git-commit-sha>" Test against a specific commit
136137"envVar" Pass an environment variable before running
137- "install": ["install", "--param1", "--param2"] - Array of command line parameters passed to ' npm' or ' yarn' as install arguments
138+ "install": ["install", "--param1", "--param2"] - Array of command line parameters passed to ` npm` or ` yarn` or `pnpm` as install arguments
138139"maintainers": ["user1", "user2"] - List of module maintainers to be contacted with issues
139140"scripts": ["script1", "script2"] - List of scripts from package.json to run instead of 'test'
140141"tags": ["tag1", "tag2"] Specify which tags apply to the module
141142"useGitClone": true Use a shallow git clone instead of downloading the module
142143"ignoreGitHead": Ignore the gitHead field if it exists and fallback to using github tags
143144"yarn": Install and test the project using yarn instead of npm
145+ "pnpm": Install and test the project using pnpm instead of npm
144146"timeout": Number of milliseconds before timeout. Applies separately to `install` and `test`
145147```
146148
0 commit comments