Skip to content

chore(deps): bump immer from 10.1.1 to 10.2.0 #733

chore(deps): bump immer from 10.1.1 to 10.2.0

chore(deps): bump immer from 10.1.1 to 10.2.0 #733

Workflow file for this run

name: Unit Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
# Run unit tests
- name: Run SDK unit tests
run: npx nx run sdk:test
- name: Run Differ unit tests
run: npx nx run differ:test
env:
NODE_OPTIONS: '--no-experimental-strip-types'
- name: Run CLI unit tests
run: npx nx run cli:test
- name: Run APISIX Backend unit tests
run: npx nx run backend-apisix:test
- name: Run API7 Backend unit tests
run: npx nx run backend-api7:test
- name: Run OpenAPI Converter unit tests
run: npx nx run converter-openapi:test