Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / resolve / appveyor.yml
1 version: 1.0.{build}
2 skip_branch_with_pr: true
3 build: off
4
5 environment:
6   matrix:
7     - nodejs_version: "12"
8     - nodejs_version: "11"
9     - nodejs_version: "10"
10     - nodejs_version: "9"
11     - nodejs_version: "8"
12     - nodejs_version: "7"
13     - nodejs_version: "6"
14     - nodejs_version: "5"
15     - nodejs_version: "4"
16     - nodejs_version: "3"
17     - nodejs_version: "2"
18     - nodejs_version: "1"
19     - nodejs_version: "0.12"
20     - nodejs_version: "0.10"
21     - nodejs_version: "0.8"
22     - nodejs_version: "0.6"
23 matrix:
24   # fast_finish: true
25   allow_failures:
26     - nodejs_version: "5" # due to windows npm bug, registry-side
27     - nodejs_version: "0.8"
28     - nodejs_version: "0.6"
29
30 platform:
31   - x86
32   - x64
33
34 # Install scripts. (runs after repo cloning)
35 install:
36  # Fix symlinks in working copy (see https://github.com/appveyor/ci/issues/650#issuecomment-186592582) / https://github.com/charleskorn/batect/commit/d08986802ec43086902958c4ee7e57ff3e71dbef
37  - git config core.symlinks true
38  - git reset --hard
39  # Get the latest stable version of Node.js or io.js
40  - ps: Install-Product node $env:nodejs_version $env:platform
41  - IF %nodejs_version% EQU 0.6 npm config set strict-ssl false && npm -g install npm@1.3
42  - IF %nodejs_version% EQU 0.8 npm config set strict-ssl false && npm -g install npm@1.4.28 && npm install -g npm@4.5
43  - set PATH=%APPDATA%\npm;%PATH%
44  #- IF %nodejs_version% NEQ 0.6 AND %nodejs_version% NEQ 0.8 npm -g install npm
45  # install modules
46  - npm install
47
48 # Post-install test scripts.
49 test_script:
50  # Output useful info for debugging.
51  - node --version
52  - npm --version
53  # run tests
54  - npm run tests-only