123456789101112131415161718192021222324252627 |
-
- environment:
- nodejs_version: "8"
-
-
- matrix:
- fast_finish: true
-
-
- install:
-
- - ps: Install-Product node $env:nodejs_version
-
- - npm install
-
- - node --version
- - npm --version
-
-
- test_script:
- - npm run lint
- - npm run test:all
- - npm run build
-
-
- build: off
|