chore(scripts): namespace "chore:ci-update-nightly-version"

This commit is contained in:
Panagiotis Papadopoulos 2025-02-14 08:35:46 +01:00
parent 688eb4d93f
commit d2e8f946a0
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ jobs:
shell: bash shell: bash
run: npm ci run: npm ci
- name: Update nightly version - name: Update nightly version
run: npm run ci-update-nightly-version run: npm run chore:ci-update-nightly-version
- name: Run the build - name: Run the build
uses: ./.github/actions/build-electron uses: ./.github/actions/build-electron
with: with:

View File

@ -54,7 +54,7 @@
"integration-mem-db-dev": "cross-env TRILIUM_INTEGRATION_TEST=memory TRILIUM_PORT=8082 TRILIUM_ENV=dev TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts", "integration-mem-db-dev": "cross-env TRILIUM_INTEGRATION_TEST=memory TRILIUM_PORT=8082 TRILIUM_ENV=dev TRILIUM_DATA_DIR=./integration-tests/db nodemon src/main.ts",
"generate-document": "cross-env nodemon ./bin/generate_document.ts 1000", "generate-document": "cross-env nodemon ./bin/generate_document.ts 1000",
"generate-openapi": "node bin/generate-openapi.js", "generate-openapi": "node bin/generate-openapi.js",
"ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts", "chore:ci-update-nightly-version": "tsx ./bin/update-nightly-version.ts",
"prettier-check": "prettier . --check", "prettier-check": "prettier . --check",
"prettier-fix": "prettier . --write" "prettier-fix": "prettier . --write"
}, },