Skip to content

refactor(env): reorder environment configuration extensions for impro… #80

refactor(env): reorder environment configuration extensions for impro…

refactor(env): reorder environment configuration extensions for impro… #80

Workflow file for this run

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