milligram/.appveyor.yml
Kerry M-R 18acaee21f
Update appveyor to fix builds
node was pulling in as 12, but getting the latest npm, which aren't compatible
2023-10-12 08:11:08 +10:30

21 lines
368 B
YAML

os: Visual Studio 2022
version: '{build}'
build: off
platform: x64
environment:
matrix:
- nodejs_version: 18
install:
- ps: Install-Product node $env:nodejs_version x64
- set CI=true
- npm i -g npm@"10-11"
- set PATH=%APPDATA%\npm;%PATH%
- npm i
matrix:
fast_finish: true
shallow_clone: true
clone_depth: 1
test_script: npm t
cache:
- node_modules