feat(api): recipe REST API and route packages (PLAN 3.4) (#9) #18
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: Validate OpenAPI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| openapi: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: pnpm/action-setup@v5.0.0 | |
| with: | |
| version: 10.18.1 | |
| - uses: actions/setup-node@v6.3.0 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint OpenAPI spec | |
| run: pnpm --filter @solid-pact/openapi run lint |