mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-09 15:47:55 -05:00
25 lines
471 B
YAML
25 lines
471 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: 12
|
|
- nodejs_version: 14
|
|
- nodejs_version: 16
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version x64
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
before_test:
|
|
- npm install -g gulp-cli
|
|
|
|
# Skipping specific commit files: https://www.appveyor.com/docs/appveyor-yml and https://www.appveyor.com/docs/how-to/filtering-commits
|
|
skip_commits:
|
|
files:
|
|
- '**/*.md'
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|