Skip to content

Commit

Permalink
increase test timeout for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotblackburn committed Dec 28, 2023
1 parent 6e75bf0 commit a190041
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: npm ci, build, and test
run: |
npm ci
npm test
npm test-ci
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 20
- run: npm install
- run: npm test
- run: npm test-ci

publish-npm:
needs: build
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"scripts": {
"lint": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js'",
"lint-fix": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js' --write",
"test": "mocha ./tests/index.js"
"test": "mocha ./tests/index.js",
"test-ci": "mocha ./tests/index.js --timeout 180000"
},
"bin": {
"mdpdf": "bin/index.js"
Expand Down

0 comments on commit a190041

Please sign in to comment.