feat: add ability to push components with just the minimal data without the function json #627
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: CI | |
| on: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.2.19 | |
| - run: bun install --frozen-lockfile | |
| - name: Commit lint | |
| run: bun commitlint --from $(git rev-parse --short HEAD^1) --to $(git rev-parse --short HEAD^2) | |
| - name: Run prettier | |
| run: bun run format:check | |
| - name: Run build | |
| run: bun run build | |
| - name: Run linting | |
| run: bun run lint:check | |
| - name: Run tests | |
| run: bun run test |