https://github.com/websockets/ws
Raw File
Tip revision: 67983cbba428d3b55c6f97d4cf17d29e32a113d0 authored by Luigi Pinca on 25 April 2020, 10:46:08 UTC
[dist] 7.2.5
Tip revision: 67983cb
appveyor.yml
environment:
  matrix:
    - nodejs_version: '14'
    - nodejs_version: '13'
    - nodejs_version: '12'
    - nodejs_version: '10'
    - nodejs_version: '8'
platform:
  - x86
matrix:
  fast_finish: true
install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install
test_script:
  - node --version
  - npm --version
  - npm test
build: off
back to top