mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
34 lines
500 B
YAML
34 lines
500 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- 'lts/*'
|
|
|
|
cache:
|
|
directories:
|
|
- "$HOME/.npm"
|
|
|
|
env:
|
|
global:
|
|
- NO_UPDATE_NOTIFIER=1
|
|
- NODE_NO_WARNINGS=1
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- npm config set loglevel warn
|
|
|
|
install: npm ci
|
|
|
|
before_script:
|
|
- git config --global user.email team+camperbot@freeCodeCamp.org
|
|
- git config --global user.name "CamperBot"
|
|
|
|
script:
|
|
<<<<<<< HEAD
|
|
- npm run test-ci
|
|
=======
|
|
- npm run test
|
|
- cd ./client
|
|
- npm run build
|
|
>>>>>>> fix(ci-build): Make it so, Travis
|