Skip to main content
Module

x/value_schema/appveyor.yml

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, and Deno
Go to Latest
File
# https://www.appveyor.com/docs/appveyor-yml# https://www.appveyor.com/docs/lang/nodejs-iojs/
environment: matrix: # jest and eslint no longer support v4 - nodejs_version: "6" - nodejs_version: "8"branches: only: - "master" - "develop"cache: - "node_modules"install: - ps: "Install-Product node $env:nodejs_version" - "if exist node_modules npm prune" - "if exist node_modules npm rebuild" - "npm install"test_script: - "node --version" - "npm --version" - "npm run verify"build: "off"