2305aacb93
1. Add `skyline-nodejs14-run-lint-xx` jobs to execute code static analysis 2. Add `skyline-nodejs14-run-unit-test` jobs to execute unit test Change-Id: Ic3453c40c54882e72b804d23f6941cb94e83975f
39 lines
967 B
YAML
39 lines
967 B
YAML
- job:
|
|
name: skyline-nodejs14-run-lint-src
|
|
parent: nodejs-run-lint
|
|
description: |
|
|
Run lint using Node 14 for skyline-console src directory.
|
|
vars:
|
|
node_version: 14
|
|
js_build_command: lint
|
|
|
|
- job:
|
|
name: skyline-nodejs14-run-lint-test
|
|
parent: nodejs-run-lint
|
|
description: |
|
|
Run lint using Node 14 for skyline-console test directory.
|
|
vars:
|
|
node_version: 14
|
|
js_build_command: lint:test
|
|
|
|
- job:
|
|
name: skyline-nodejs14-run-unit-test
|
|
parent: nodejs-run-test
|
|
description: |
|
|
Run unit test using Node 14 for skyline-console.
|
|
vars:
|
|
node_version: 14
|
|
js_build_command: test:unit
|
|
|
|
- project:
|
|
check:
|
|
jobs:
|
|
- skyline-nodejs14-run-lint-src
|
|
- skyline-nodejs14-run-lint-test
|
|
- skyline-nodejs14-run-unit-test
|
|
gate:
|
|
jobs:
|
|
- skyline-nodejs14-run-lint-src
|
|
- skyline-nodejs14-run-lint-test
|
|
- skyline-nodejs14-run-unit-test
|