chore(deps): safe patch/minor refresh #12
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: TypeScript Bindings | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "bindings/typescript/**" | |
| - ".github/workflows/bindings.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "bindings/typescript/**" | |
| - ".github/workflows/bindings.yml" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: bindings-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: bindings/typescript | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.14 | |
| - name: Cache Bun install | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-store-${{ hashFiles('bindings/typescript/bun.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-bun-store- | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Type-check | |
| run: bun run lint | |
| - name: Build | |
| run: bun run build | |
| - name: Run tests | |
| run: bun test | |
| - name: Summary | |
| if: success() | |
| run: | | |
| { | |
| echo "## TypeScript bindings green" | |
| echo "" | |
| echo "- Type-check: bun run lint" | |
| echo "- Build: bun run build" | |
| echo "- Tests: bun test" | |
| } >> "$GITHUB_STEP_SUMMARY" |