Skip to content

chore(deps): update dependency bun to v1.1.41 #648

chore(deps): update dependency bun to v1.1.41

chore(deps): update dependency bun to v1.1.41 #648

Workflow file for this run

name: 'Checks'
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
uses: ./.github/workflows/wc-changed.yml
check-actions:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.actions == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@08ef4afa963243489a457cca426f705ce4e0d1a5 # v1.60.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
check-docs:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.docs == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8
- name: Install deps
run: bun install
- name: Build
run: bun run build
status-check:
runs-on: ubuntu-24.04
needs:
- check-actions
- check-docs
permissions: { }
if: failure()
steps:
- run: exit 1