mirror of
https://github.com/postlight/mercury-parser
synced 2024-11-18 21:28:22 +00:00
15 lines
333 B
YAML
15 lines
333 B
YAML
|
# scripts that run after cloning repository
|
||
|
install:
|
||
|
# Get the latest stable version of Node.js or io.js
|
||
|
- ps: Install-Product node 4.3.2
|
||
|
# install modules
|
||
|
- npm install --global yarn
|
||
|
- yarn
|
||
|
|
||
|
build_script:
|
||
|
- yarn build
|
||
|
|
||
|
# to run your custom scripts instead of automatic tests
|
||
|
test_script:
|
||
|
- yarn test -- --maxWorkers=4
|