chore(core): replace globby with tinyglobby #703
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: PR checks | |
| on: | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'next' | |
| permissions: | |
| contents: read | |
| jobs: | |
| pr-checks: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Check formatting | |
| run: bun run format:check | |
| - name: Build packages | |
| run: bun run build | |
| - name: Typecheck packages | |
| run: bun run typecheck | |
| - name: Lint packages | |
| run: bun run lint | |
| - name: Test packages | |
| run: bun run test | |
| - name: Verify snapshot | |
| # this step also runs the generate-api task | |
| run: bun run test:snapshots | |
| - name: Verify generated code can build | |
| run: bun run --filter orval-tests build |