fix(deps): update non-breaking updates #383
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: Test Build | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| inputs: | |
| branch: | |
| description: 'Branch to run the workflow on' | |
| required: false | |
| default: 'main' | |
| type: string | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4.1.0 | |
| with: | |
| version: 10.16.1 | |
| - name: Ensure pnpm cache directory exists | |
| run: mkdir -p ~/.pnpm-store | |
| - name: Cache pnpm dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.pnpm-store | |
| key: pnpm-store-build | |
| restore-keys: | | |
| pnpm-store-build | |
| - name: Install dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Run Build | |
| run: pnpm run build |