mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-05 10:35:32 +02:00
15 lines
252 B
YAML
15 lines
252 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "10"
|
|
- "8"
|
|
- "7"
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- "node_modules"
|
|
script:
|
|
- yarn test
|