Skip to content

chore(deps): update dependency bun to v1.2.0 #698

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

chore(deps): update dependency bun to v1.2.0 #698

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@abd537417cf4991e1ba8e21a67b1119f4f53b8e0 # v1.64.1
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@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11
- 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