refactor(env): reorder environment configuration extensions for impro… #80
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: 🤔 Pull Request | |
| on: | |
| push: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.head.sha}} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| check: | |
| name: 🕵🏻 Check Pull Request | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 # 15 minutes | |
| steps: | |
| - name: 🛎️ Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: 🍞 Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: 🌵 Cache Bun | |
| id: bun-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} | |
| - name: 📦 Install Dependencies | |
| run: bun install | |
| - name: 🐶 Lint Dog | |
| uses: mongolyy/reviewdog-action-biome@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review |