forked from Zaid-Ajaj/Fable.Remoting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (24 loc) · 789 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
init:
- git config --global core.autocrlf input
build:
verbosity: detailed
environment:
nodejs_version: "20.5.1"
cache:
- "%LOCALAPPDATA%\\Yarn"
os: Visual Studio 2022
# Install scripts. (runs after repo cloning)
install:
# .NET SDK 6.0.100 comes installed on the base image
# - cmd: choco install dotnet-sdk --version 6.0.100
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
# # Update npm
# # There seems to be issues with npm 5.4 in Windows
# # See https://github.com/npm/npm/issues/18380
# - npm install -g [email protected]
build_script:
- cmd: dotnet tool restore
- cmd: dotnet run --project ./build/Build.fsproj -- BuildRunAllTests
- cmd: dotnet run --project ./build/Build.fsproj -- IntegrationTests
test: off