Skip to content

Added github actions and helm chart for testing and deploying app to … #6

Added github actions and helm chart for testing and deploying app to …

Added github actions and helm chart for testing and deploying app to … #6

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run Jest tests with coverage
run: npm test -- --coverage
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage