generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAN-227 - add basic circleci file to see if github check passes
- Loading branch information
1 parent
5799121
commit e861908
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
hmpps: ministryofjustice/hmpps@9 | ||
slack: circleci/[email protected] | ||
|
||
parameters: | ||
alerts-slack-channel: | ||
type: string | ||
# Normally team specific alert channel e.g. hmpps_tech_alerts, syscon-alerts, dps_sed_alerts | ||
# This is to avoid a general alert dumping ground that no-one then monitors | ||
default: probation-integration-notifications | ||
|
||
releases-slack-channel: | ||
type: string | ||
# Normally dps-releases for most teams / projects | ||
default: probation-integration-notifications | ||
|
||
node-version: | ||
type: string | ||
default: 20.13-browsers | ||
|
||
jobs: | ||
build: | ||
executor: | ||
name: hmpps/node | ||
tag: << pipeline.parameters.node-version >> | ||
steps: | ||
- checkout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters