fix(deps): update dependencies (non-major update) - autoclosed #185
Workflow file for this run
This file contains 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: 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 }} |