Last active
May 25, 2024 16:09
-
-
Save fahrradflucht/757ef12858149dcd9875894c5b4c2db3 to your computer and use it in GitHub Desktop.
Volta hooks configuration for pulling nightly node.js builds. Just place this in `.volta/hooks.json` in the project you want to test and Volta's `latest` will be the latest nightly build.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"node": { | |
"index": { | |
"template": "https://nodejs.org/download/nightly/index.json" | |
}, | |
"latest": { | |
"template": "https://nodejs.org/download/nightly/index.json" | |
}, | |
"distro": { | |
"template": "https://nodejs.org/download/nightly/v{{version}}/node-v{{version}}-{{os}}-{{arch}}.tar.gz" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mkdir -p .volta && curl https://gist.githubusercontent.com/fahrradflucht/757ef12858149dcd9875894c5b4c2db3/raw/f3d4ccf888a237ac664fd5e864857e9758c5cab4/hooks.json -o .volta/hooks.json