Enable manual workflow run and add TypeScript types

Added `workflow_dispatch` to GitHub Actions to permit manual execution of pull request tests, enhancing flexibility in CI/CD processes. Included `types` field in `package.json` to specify TypeScript declaration file, improving TypeScript support and integration.
This commit is contained in:
2024-08-14 19:51:45 +02:00
parent 6c4db19926
commit f307233fe7
4 changed files with 99 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch: # Allows manual execution of the workflow.
jobs:
build-and-test: