mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
24 lines
364 B
YAML
24 lines
364 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "10"
|
|
- "11"
|
|
cache:
|
|
directories:
|
|
- "node_modules"
|
|
git:
|
|
depth: 5
|
|
addons:
|
|
firefox: "latest"
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
before_install:
|
|
- npm i -g npm@latest
|
|
install:
|
|
- npm ci
|
|
- npm run build:dev
|
|
script:
|
|
- npm run lint
|
|
- npm test
|
|
after_success: npm run coverage |