mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
22 lines
271 B
YAML
22 lines
271 B
YAML
dist: bionic
|
|
sudo: false
|
|
language: node_js
|
|
|
|
node_js: stable
|
|
cache: false
|
|
|
|
git:
|
|
depth: 1
|
|
|
|
script:
|
|
- npm test
|
|
- bash scripts/build.sh
|
|
|
|
deploy:
|
|
provider: script
|
|
script: bash scripts/deploy.sh
|
|
skip_cleanup: true
|
|
on:
|
|
repo: tldr-pages/tldr
|
|
branch: master
|