-
Notifications
You must be signed in to change notification settings - Fork 0
Harness pipeline #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Harness pipeline #17
Changes from all commits
ba977bc
4ee3fe2
45e9653
92b2857
f0bae1a
2553c23
bf09cbc
1a92882
6375b41
ec5bfd9
6ebc78b
e98a6be
59cc994
a0291b8
39e11a9
702a242
f37e214
0605195
dc6f45e
d6c87a7
f1c9e3c
2e71880
a03b37b
cc00ae2
4240ee6
455ad43
29babac
1ca1ead
6a373a0
b3507a9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| inputSet: | ||
| name: DefaultInput | ||
| identifier: DefaultInput | ||
| orgIdentifier: PROD | ||
| projectIdentifier: Harness_Split | ||
| pipeline: | ||
| identifier: test | ||
| properties: | ||
| ci: | ||
| codebase: | ||
| build: | ||
| type: PR | ||
| spec: | ||
| number: <+trigger.branch> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| pipeline: | ||
| name: FME-openFeature-JS-web | ||
| identifier: test | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please rename the identifier, it can be |
||
| projectIdentifier: Harness_Split | ||
| orgIdentifier: PROD | ||
| properties: | ||
| ci: | ||
| codebase: | ||
| connectorRef: splitio | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please don't use this connector, it will fail soon, because it's not a github app. use |
||
| repoName: split-openfeature-provider-web-js | ||
| build: <+input> | ||
| stages: | ||
| - stage: | ||
| name: CI Stage | ||
| identifier: ci_stagex | ||
| type: CI | ||
| spec: | ||
| cloneCodebase: true | ||
| runtime: | ||
| type: Cloud | ||
| spec: | ||
| size: small | ||
| imageSpec: | ||
| imageName: ubuntu-latest | ||
| platform: | ||
| os: Linux | ||
| arch: Amd64 | ||
| execution: | ||
| steps: | ||
| - step: | ||
| type: Action | ||
| name: Setup NodeJS | ||
| identifier: setup_nodejs | ||
| spec: | ||
| uses: dcodeIO/setup-node-nvm@master | ||
| with: | ||
| node-version: 20 | ||
| - step: | ||
| type: Run | ||
| name: Install Dependencies | ||
| identifier: install_dependencies | ||
| spec: | ||
| shell: Bash | ||
| command: npm ci | ||
| - step: | ||
| type: Run | ||
| name: Run Checks | ||
| identifier: run_checks | ||
| spec: | ||
| shell: Sh | ||
| command: npm run check | ||
| - step: | ||
| identifier: run_tests | ||
| name: Run Tests | ||
| type: Test | ||
| spec: | ||
| command: npm run test | ||
| shell: Sh | ||
| reports: | ||
| type: JUnit | ||
| spec: | ||
| paths: | ||
| - "**/test-results.xml" | ||
| - "**/junit-*.xml" | ||
| envVariables: | ||
| NODE_ENV: test | ||
| CI: "true" | ||
| tags: {} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename the input set, file name, name, and identifier
add
tags: {}line