Skip to content

Commit

Permalink
Rewrite Makefile using NPS Scripts. Closes mochajs#2352
Browse files Browse the repository at this point in the history
  • Loading branch information
TedYav committed Jan 9, 2018
1 parent e8b5592 commit f8b0029
Show file tree
Hide file tree
Showing 7 changed files with 246 additions and 197 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Expand Up @@ -16,25 +16,25 @@ matrix:
fast_finish: true
include:
- node_js: '9'
env: TARGET=test-node COVERAGE=true
env: TARGET=test.node COVERAGE=true
- node_js: '8'
env: TARGET=test-node
env: TARGET=test.node
- node_js: '6'
env: TARGET=test-node
env: TARGET=test.node
- node_js: '4'
env: TARGET=test-node
env: TARGET=test.node
- node_js: '8'
env: TARGET=lint
- node_js: '8'
env: TARGET=test-browser
env: TARGET=test.browser

before_install: scripts/travis-before-install.sh

before_script: scripts/travis-before-script.sh

script: make $TARGET
script: npm start $TARGET

after_success: npm run coveralls
after_success: npm start coveralls

notifications:
email: false
Expand Down
176 changes: 0 additions & 176 deletions Makefile

This file was deleted.

3 changes: 1 addition & 2 deletions appveyor.yml
Expand Up @@ -12,7 +12,6 @@ install:
- set PATH=%APPDATA%\npm;c:\MinGW\bin;%PATH%
- npm install -g npm
- npm install
- copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
matrix:
fast_finish: true
build: off
Expand All @@ -22,7 +21,7 @@ clone_depth: 1
test_script:
- node --version
- npm --version
- make test-node
- npm start test.node
skip_commits:
message: /\[ci\s+skip\]/

2 changes: 1 addition & 1 deletion netlify.toml
Expand Up @@ -10,4 +10,4 @@

[build]
publish = "docs/_dist/"
command = "npm run buildDocs"
command = "npm start buildDocs"

0 comments on commit f8b0029

Please sign in to comment.