deps: braid-design-system 34.0.3 #6583
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: Validate | |
| on: | |
| - pull_request | |
| - push | |
| permissions: {} | |
| env: | |
| COREPACK_DEFAULT_TO_LATEST: 0 | |
| jobs: | |
| validate: | |
| name: Lint & Test | |
| permissions: | |
| checks: write | |
| runs-on: ubuntu-latest | |
| env: | |
| SKU_TELEMETRY: false | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Set up pnpm | |
| run: npm install --global corepack@0.31.0 && corepack enable pnpm && corepack install | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Test | |
| run: pnpm test:ci | |
| - name: Lint | |
| run: pnpm lint | |
| # sku lint does not dry run the build | |
| - name: Build fe | |
| run: pnpm fe build |