I’m very much a novice with Travis CI and with Node.JS in general. Looking for some help in getting the integration to work with my MakeCode Arcade extensions.
When using MakeCode Arcade to initialize a GitHub repository, a default travis.yaml
file is created:
language: node_js
node_js:
- "8.9.4"
script:
- "npm install -g pxt"
- "pxt target arcade"
- "pxt install"
- "pxt build"
sudo: false
cache:
directories:
- npm_modules
- pxt_modules
When Travis CI attempts to run pxt target arcade
, the following error is generated:
$ pxt target arcade
Installing pxt-arcade locally; don't worry about package.json warnings.
npm ERR! code E404
npm ERR! 404 Not Found: pxt-arcade@latest
I’m unsure how to proceed. Do I need to target a newer version of pxt
that includes the MakeCode Arcade target?