build(deps): bump brace-expansion from 2.0.2 to 2.1.0 #690
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: Code Standards & Testing' | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| name: Continuous Integration Suite | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: '⬇️ Checkout Code' | |
| uses: actions/checkout@v4 | |
| - name: '💚 Use Node.js v20' | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: '📦 Install Packages' | |
| run: yarn --immutable --immutable-cache --check-cache | |
| - name: '🎨 Code Formatting & Linting' | |
| run: yarn analyze:ci | |
| - name: '🟦 Typecheck' | |
| run: yarn analyze:types | |
| - name: '▲ Generate Prisma Client for Tests' | |
| working-directory: tests | |
| run: yarn prisma:generate | |
| - name: '⚡️ Test' | |
| id: test | |
| run: yarn test | |
| dependabot: | |
| name: 'Dependabot (auto-merge)' | |
| needs: [ci] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| timeout-minutes: 5 | |
| if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} | |
| steps: | |
| - name: Enable auto-merge for Dependabot PRs | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} |