Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/node-server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Run tests
working-directory: "node-server"
run: npm run ci-test
run: npm run test:ci

- name: Run linter
working-directory: "node-server"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/whisper-service-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
working-directory: "whisper-service"
run: pytest --cov=.

- name: Run tests
- name: Run linter
working-directory: "whisper-service"
run: pylint --disable=import-error $(git ls-files '*.py')

Expand Down
7 changes: 3 additions & 4 deletions node-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions node-server/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
{
"name": "scribear-backend",
"name": "scribear-node-server",
"version": "0.0.0",
"main": "build/index.js",
"main": "build/src/index.js",
"type": "module",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"clean": "gts clean",
"fix": "eslint --fix",
"dev": "tsc-watch --compiler ts-patch/compiler/tsc.js --onSuccess \"node build/src/index.js\" | pino-pretty",
"pretest": "npm run lint",
"test": "vitest --ui --coverage",
"ci-test": "vitest run",
"test:dev": "vitest --ui --coverage",
"test:ci": "vitest run",
"build": "tspc",
"prestart": "npm run build",
"start": "node ./build/src/index.js"
},
"author": "bwu1324",
"license": "MIT",
"author": "scribear",
"description": "",
"engines": {
"node": "^20.0.0"
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/compat": "1.2.6",
Expand Down
Loading