refactor(ui): consolidate bulk modals and sprint Primer shell #345
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: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11.5.0 | |
| - name: Set up Node.js | |
| id: setup-node-act | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| node-version: 25 | |
| - name: Run CI | |
| env: | |
| SETUP_NODE_VERSION: ${{ steps.setup-node-act.outputs.node-version }} | |
| run: | | |
| set -euo pipefail | |
| node_version="${SETUP_NODE_VERSION#v}" | |
| export PATH="/opt/hostedtoolcache/node/${node_version}/x64/bin:$PATH" | |
| node --version | |
| npm --version | |
| npm install --global pnpm@11.5.0 | |
| pnpm install --frozen-lockfile | |
| pnpm typecheck | |
| pnpm build |