sync scaffold files against agent-practices templates #92
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: build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| env: | |
| FORCE_COLOR: 2 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| bun-version: ['1.3'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Bun ${{ matrix.bun-version }} | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ matrix.bun-version }} | |
| - run: bun install | |
| - run: | | |
| echo "::remove-matcher owner=eslint-compact::" | |
| echo "::remove-matcher owner=eslint-stylish::" | |
| - run: bun run all | |
| # sync: | |
| # version=1 | |
| # source=https://github.com/rapideditor/agent-practices/blob/main/templates/.github/workflows/build.yml | |
| # instructions="skip entirely if this project does not use Bun or GitHub Actions; otherwise adapt the build steps and toolchain to match this project, and ensure action versions are current" |