feat(core): loose custom resource id length #227
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: 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 CLI unit tests | |
run: npx nx run cli: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 |