Demo - [Guidelines] - Public API route + logging user data + no unit test for new service #83
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: QA Pipeline | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
env: | |
NODE_VERSION: '18.x' # set this to the node version to use (supports 8.x, 10.x, 12.x) | |
HELM_EXPERIMENTAL_OCI: 1 | |
jobs: | |
nodejs: | |
runs-on: ubuntu-latest | |
name: Validate nodejs | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: '20' | |
- name: Install pnpm | |
run: npm -g install pnpm | |
- name: Install packages | |
run: pnpm install | |
- name: Install packages | |
run: pnpm lint | |
- name: Install packages | |
run: pnpm test | |
helm: | |
runs-on: ubuntu-latest | |
name: Validate helm | |
steps: | |
- uses: actions/checkout@v3 | |
- name: helm lint | |
run: helm lint ./charts | |
- name: helm template | |
run: helm template test ./charts |