Skip to content

Commit

Permalink
ci: tweak windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 12, 2020
1 parent fccc261 commit 893ae7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ test_script:
- node --version
- yarn --version
- yarn build
- yarn test
- yarn test-sw
- yarn ci-windows
- yarn ci-windows-sw

cache:
- node_modules -> yarn.lock
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"build": "rm -rf dist && tsc -p src/client && tsc -p src/node && tsc -p src/sw",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "jest --clearCache && jest --runInBand --forceExit",
"test-sw": "cross-env USE_SW=1 yarn test",
"test-sw": "USE_SW=1 yarn test",
"ci-windows": "jest --runInBand --forceExit",
"ci-windows-sw": "cross-env USE_SW=1 yarn ci-windows",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublishOnly": "yarn build && yarn changelog",
"postpublish": "git add CHANGELOG.md && git commit -m 'chore: changelog [ci skip]' && git push"
Expand Down

0 comments on commit 893ae7b

Please sign in to comment.