我有一个文件夹bin
,其中包含一些脚本example.js
,内容
#!/usr/bin/env node
console.log("Run my code!");
我想在GitHub操作中添加run脚本作为一个作业
- name: 📦 Install dependencies
run: yarn install
- name: 📗 Trigger my test script
run: yarn test
顺便说一句我的包裹。
"start": "expo start",
"test": "./bin/example.js"
我正在记录Permission denied
。
我的问题是,我怎么能负担得起这个魔法?也许世博会不承认#!/usr/bin/env node
?
1条答案
按热度按时间ecbunoof1#
答案是
jonrsharpe
评论(谢谢):而不是"test": "./bin/example.js"
我添加了"test": "node ./bin/example.js"