feat(core): ingress server listen on https and UDS http #488
Workflow file for this run
This file contains hidden or 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: 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 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 |