Skip to content

refactor(user-tenant-service): modify all API as per requirement #6132

refactor(user-tenant-service): modify all API as per requirement

refactor(user-tenant-service): modify all API as per requirement #6132

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
# This workflow contains a single job called "npm_audit"
jobs:
npm_audit:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: node --version
- run: npm --version
- name: Install Monorepo Deps
run: npm ci
- name: Bootstrap Monorepo
run: npx lerna bootstrap
- name: Run Test Cases
run: npx lerna run test
- name: Run Lint Checks
run: npx lerna run lint