Skip to content

refactor(some): ✨ tweak #177

refactor(some): ✨ tweak

refactor(some): ✨ tweak #177

Workflow file for this run

name: Danger on PR
on:
pull_request:
types: [edited, opened, reopened, synchronize]
permissions:
contents: read
pull-requests: write
statuses: write
jobs:
danger:
name: Run Danger JS on Pull Request
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Bun with Mise
uses: jdx/mise-action@v2
- name: Set up bun store and build artifact cache
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun i --no-save
- name: Danger
run: bun danger ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}