-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathappveyor.yml
More file actions
26 lines (22 loc) · 622 Bytes
/
appveyor.yml
File metadata and controls
26 lines (22 loc) · 622 Bytes
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
# Test against the latest version of this Node.js version
environment:
nodejs_version: "12"
# Local NPM Modules
cache:
- node_modules
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install -g yarn --quiet
- yarn install --pure-lockfile
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# Run the build
build_script:
- yarn dev # This will also run prettier!
- yarn build # make sure both scripts work