Skip to content

Demo - [Guidelines] - Public API route + logging user data + no unit test for new service #83

Demo - [Guidelines] - Public API route + logging user data + no unit test for new service

Demo - [Guidelines] - Public API route + logging user data + no unit test for new service #83

Workflow file for this run

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