Release v0.5.0 #14
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| # --legacy-peer-deps mirrors pnpm's permissive peer-dep behavior used in the | |
| # monorepo. Without it, npm install fails on openapi-typescript@^7 which | |
| # declares a strict `typescript@^5.x` peer while we ship typescript@^6. | |
| - run: npm install --legacy-peer-deps | |
| - run: npm run build | |
| - run: npm run lint | |
| - run: npm test |