✏️ 正在编辑: install-ci-test.js
路径:
/opt/alt/alt-nodejs19/root/usr/lib/node_modules/npm/lib/commands/install-ci-test.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
// npm install-ci-test // Runs `npm ci` and then runs `npm test` const CI = require('./ci.js') class InstallCITest extends CI { static description = 'Install a project with a clean slate and run tests' static name = 'install-ci-test' async exec (args) { await this.npm.exec('ci', args) return this.npm.exec('test', []) } } module.exports = InstallCITest
💾 保存文件
← 返回文件管理器