mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 10:07:22 +00:00
24 lines
479 B
YAML
24 lines
479 B
YAML
# Woodpecker CI pipeline for Helix Engage Server (sidecar)
|
|
#
|
|
# Runs unit tests. Teams notification on completion.
|
|
|
|
when:
|
|
- event: [push, manual]
|
|
|
|
steps:
|
|
unit-tests:
|
|
image: node:20
|
|
commands:
|
|
- npm ci
|
|
- npm test -- --ci --forceExit
|
|
|
|
notify-teams:
|
|
image: mobydeck/ci-teams-notification
|
|
settings:
|
|
webhook_url:
|
|
from_secret: teams_webhook
|
|
facts: project,message
|
|
buttons: pipeline
|
|
when:
|
|
- status: [success, failure]
|