mirror of
https://github.com/JonasunderscoreJones/aka-worker.git
synced 2025-10-23 01:49:19 +02:00
19 lines
378 B
YAML
19 lines
378 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: '8'
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- set CI=true
|
|
- npm install --global npm@latest
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
|
- npm install
|
|
matrix:
|
|
fast_finish: true
|
|
build: off
|
|
shallow_clone: true
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm run test-no-coverage
|
|
cache:
|
|
- '%APPDATA%\npm-cache'
|