1
0
mirror of synced 2026-05-22 14:43:19 +00:00
Files
music-metadata/appveyor.yml
2024-07-16 23:47:26 +02:00

22 lines
596 B
YAML

# Test against the latest version of this Node.js version
environment:
nodejs_version: "22"
version: $(package_version)-{build}
# Install scripts. (runs after repo cloning)
install:
- ps: $env:package_version = (Get-Content -Raw -Path package.json | ConvertFrom-Json).version
- ps: Update-AppveyorBuild -Version "$env:package_version-$env:APPVEYOR_BUILD_NUMBER"
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- yarn install
build_script:
- yarn run lint
- yarn run compile
test_script:
- yarn run test