chore(deps): bump @opentui/core from 0.3.4 to 0.4.1 #343
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: Build Check | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup environment | |
| uses: ./.github/actions/setup | |
| - name: Type check | |
| run: bun run typecheck | |
| - name: Build package | |
| run: bun run build | |
| - name: Verify build artifacts | |
| run: | | |
| echo "Checking build artifacts..." | |
| test -d dist || (echo "❌ dist directory not found" && exit 1) | |
| test -f dist/index.js || (echo "❌ dist/index.js not found" && exit 1) | |
| echo "✅ dist/index.js: $(ls -lh dist/index.js | awk '{print $5}')" |