chore(deps): bump the minor group across 1 directory with 19 updates #1809
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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build and lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - name: Copy .env.example to .env | |
| run: cp .env.example .env | |
| - run: pnpm check | |
| if: always() | |
| - run: pnpm lint | |
| if: always() | |
| - run: pnpm build | |
| if: always() | |
| dependency-review: | |
| name: 'Dependency Review' | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@v5 | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@v4 |