1 Commits

Author SHA1 Message Date
57dcb7ccca add test script and ci
Some checks failed
CI / Test (pull_request) Failing after 22s
2025-03-25 21:59:32 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -23,3 +23,6 @@ jobs:
- name: Run spellcheck - name: Run spellcheck
run: bun run check:spell run: bun run check:spell
- name: Run integration tests
run: bun run test:integration

View File

@@ -3,7 +3,8 @@
"build": "bun build --minify --target bun --outdir dist --sourcemap src/main.ts", "build": "bun build --minify --target bun --outdir dist --sourcemap src/main.ts",
"check:code": "eslint src/ --ext .ts", "check:code": "eslint src/ --ext .ts",
"check:spell": "cspell --config cspell.code.json **/*.ts", "check:spell": "cspell --config cspell.code.json **/*.ts",
"start": "bun run src/main.ts" "start": "bun run src/main.ts",
"test:integration": "bun test ./tests/*"
}, },
"devDependencies": { "devDependencies": {
"@types/ts3-nodejs-library": "^2.0.1", "@types/ts3-nodejs-library": "^2.0.1",