Skip to content

Commit

Permalink
Make test-ci (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Mar 2, 2021
1 parent c1524f0 commit d7beb36
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- yarn-master
- yarn-
- run: yarn
- run: make test
- run: make test-ci
- run: make coverage
- save_cache:
name: save Yarn cache
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -28,11 +28,13 @@ publish: # deploys the current version to npmjs.com
setup: # gets this code base ready for development
yarn

test: # runs all tests
test: # runs all tests concurrently
make --no-print-directory lint &
make --no-print-directory doc &
make --no-print-directory unit

test-ci: lint unit doc # runs all tests sequentially

update: # update dependencies
yarn upgrade --latest

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -16,7 +16,7 @@ install:
- set PATH=%APPDATA%\npm;c:\MinGW\bin;%PATH%

test_script:
- make test
- make test-ci

# Don't double-build PRs
skip_branch_with_pr: true
Expand Down

0 comments on commit d7beb36

Please sign in to comment.