forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (29 loc) · 812 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
clone_depth: 5
environment:
nodejs_version: "10.15"
platform: x64 # flow needs 64b platforms
# Install scripts. (runs after repo cloning)
install:
# 1. Yarn 1.9.4 is preinstalled, but we need a newer version, so let's install it.
# Go to https://www.appveyor.com/docs/windows-images-software/#tools to check if a
# newer version is preinstalled in the future.
- choco install yarn
# 2. Select the right node
- ps: Install-Product node $env:nodejs_version $env:platform
# 3. Setup the project
- yarn install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- yarn versions
# run tests
- yarn license-check
- yarn test-alex
- yarn lint
- yarn flow:ci
- yarn test
- yarn build-prod:quiet
cache:
- node_modules
# Don't actually build.
build: off