Created
February 24, 2015 15:43
-
-
Save eddie/2a0c843ec2ce11092a78 to your computer and use it in GitHub Desktop.
Fix npm cache issues
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
box: wercker/nodejs | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
- script: | |
name: Reduce NPM cache time | |
code: npm config set cache-lock-stale 10000 | |
- npm-install | |
- npm-test | |
# A custom script step, name value is used in the UI | |
# and the code value contains the command that get executed | |
- script: | |
name: echo nodejs information | |
code: | | |
echo "node version $(node -v) running" | |
echo "npm version $(npm -v) running" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment