10 lines
223 B
YAML
10 lines
223 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
before_script:
|
|
- export TZ=America/Sao_Paulo
|
|
- echo '$TZ' | sudo tee /etc/timezone
|
|
- sudo dpkg-reconfigure --frontend noninteractive tzdata
|
|
- npm install
|
|
script:
|
|
- npm run check
|