style: IPROD-189 added dfspMonetaryZoneId to pkiEngine.populateDFSPClientCertBundle(); minor code reformatting #49
Workflow file for this run
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
name: PR Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
## | |
# Re-usable workflows can be found at https://github.com/modusbox/github-actions-node | |
## | |
jobs: | |
test_lint: | |
uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
test_dependencies: | |
uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
test_audit: | |
uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
test_license: | |
uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
# TODO: Uncomment if unit tests added | |
# test_unit: | |
# uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
# TODO: Test coverage applies to unit tests and since there is none is commentted out | |
# test_coverage: | |
# uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
test_int: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Read .nvmrc | |
run: echo ::set-output name=NVMRC::$(cat .nvmrc) | |
id: nvm | |
- name: Setup Node@${{ steps.nvm.outputs.NVMRC }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- run: npm ci | |
- run: npm run backend:start | |
- run: nc -zv localhost 8233 | |
- run: npm run test:int | |
- run: npm run backend:stop | |
# test_int: | |
# uses: modusbox/github-actions-node/.github/workflows/[email protected] | |
test_func: | |
uses: ./.github/workflows/testFuncJob.yml |