chore(deps): bump undici from 5.22.1 to 5.26.3 in /services/user-tenant-service #6143
Workflow file for this run
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: 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 |