Skip to content

feat: Add OneUptime Host Collector with Windows service support #133

feat: Add OneUptime Host Collector with Windows service support

feat: Add OneUptime Host Collector with Windows service support #133

Workflow file for this run

name: App Test
on:
pull_request:
push:
branches-ignore:
- 'hotfix-*' # excludes hotfix branches
- 'release'
jobs:
test:
runs-on: ubuntu-latest
env:
CI_PIPELINE_ID: ${{github.run_number}}
BILLING_PRIVATE_KEY: ${{secrets.TEST_BILLING_PRIVATE_KEY}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 26
- run: cd Common && bash test-setup.sh
# App tests import Common sources directly (jest maps Common/* to
# ../Common), so Common's own dependencies must be installed too.
- run: cd Common && npm install
- run: cd App && npm install && npm run test