Add ColorSwatch component for color selection and display #136
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: Pull Request Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - claude/* | |
| - feature/* | |
| - fix/* | |
| - bug/* | |
| env: | |
| BUN_VERSION: 1.3.11 | |
| permissions: | |
| packages: read | |
| jobs: | |
| Lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ env.BUN_VERSION }} | |
| - name: Configure bun to install from GitHub Packages | |
| run: rm -rf .npmrc | |
| - name: Install dependencies | |
| run: bun install | |
| env: | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_USER: ${{ github.actor }} | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Lint | |
| run: bun run lint | |
| Typecheck: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ env.BUN_VERSION }} | |
| - name: Configure bun to install from GitHub Packages | |
| run: rm -rf .npmrc | |
| - name: Install dependencies | |
| run: bun install | |
| env: | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_USER: ${{ github.actor }} | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Typecheck | |
| run: bun run typecheck | |
| Build: | |
| name: Build | |
| needs: | |
| - Lint | |
| - Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ env.BUN_VERSION }} | |
| - name: Configure bun to install from GitHub Packages | |
| run: rm -rf .npmrc | |
| - name: Install dependencies | |
| run: bun install | |
| env: | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_USER: ${{ github.actor }} | |
| SCHEMAVAULTS_GITHUB_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| run: bun run build |