mirror of
https://github.com/postlight/mercury-parser
synced 2024-10-31 03:20:40 +00:00
e325d860fd
This commit also swaps in yarn for npm and tweaks circle ci a bit. * appveyor.yml first go * changing node * ps * narrow it down * trying this * fix airbnb module * trying with yarn * logging * hybrid? * trying yarn w/circle * bump workers? * build off? * updating script * tweaking script for appveyor * bumping maxworkers * cleaning up * build step? * yarn it * added appveyor badge
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
|