Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,8 @@ jobs:
with:
command: pnpm test:ci
install: false
- name: Upload Coverage to Qlty
uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: shepherd.js/test/coverage/lcov.info
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 20.19.0
pnpm 10.17.1
nodejs 22.22.0
pnpm 10.28.2
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "AGPL-3.0",
"scripts": {
"build": "pnpm -F shepherd.js build && pnpm -F '!shepherd.js' -F !landing -F !shepherd-docs build",
"cypress:install": "pnpm -F 'cypress-tests' cypress:install",
"cypress:install": "pnpm -F shepherd.js cypress:install",
"dev": "pnpm watch",
"lint": "pnpm -F '*' lint",
"lint:fix": "pnpm -F '*' lint:fix",
Expand All @@ -18,11 +18,13 @@
"lint:prettier:fix": "pnpm -F '*' lint:prettier:fix",
"prepare": "pnpm -F shepherd.js build",
"start": "pnpm watch",
"test:ci": "pnpm build && pnpm -F '*' test:ci",
"test:cy:watch": "pnpm -F cypress-tests test:watch",
"test:unit:watch": "pnpm -F unit-tests test:watch",
"test:ci": "pnpm build && pnpm -F shepherd.js test:ci",
"test:cy:ci": "pnpm -F shepherd.js test:cy:ci",
"test:cy:watch": "pnpm -F shepherd.js test:cy:watch",
"test:unit:ci": "pnpm -F shepherd.js test:unit:ci",
"test:unit:watch": "pnpm -F shepherd.js test:unit:watch",
"types:check": "pnpm -F shepherd.js types:check",
"view-coverage": "pnpm -F unit-tests view-coverage",
"view-coverage": "pnpm -F shepherd.js view-coverage",
"watch": "pnpm -F shepherd.js watch"
},
"devDependencies": {
Expand All @@ -45,9 +47,9 @@
"svelte": "^5.46.4",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.17.1",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": "18.* || >= 20"
"node": ">= 20"
},
"authors": [
"Robbie Wagner <rwwagner90@gmail.com>",
Expand Down
Loading
Loading