Skip to content

Kubero V3 refactoring #8

Kubero V3 refactoring

Kubero V3 refactoring #8

Workflow file for this run

name: 'Jest PR Test'
on:
pull_request:
workflow_dispatch:
defaults:
run:
working-directory: ./server-refactored-v3
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # checkout the repo
- name: Install dependencies # install dependencies
run: yarn install --frozen-lockfile
- run: yarn build # install packages
- run: yarn test:ci # run tests (configured to use jest-junit reporter)
- uses: actions/upload-artifact@v4 # upload test results
if: ${{ !cancelled() }} # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
path: reports/jest-junit.xml
reporter: jest-junit # Format of test results