Skip to content

build(deps-dev): bump @types/bun from 1.1.13 to 1.1.14 #45

build(deps-dev): bump @types/bun from 1.1.13 to 1.1.14

build(deps-dev): bump @types/bun from 1.1.13 to 1.1.14 #45

Workflow file for this run

name: 'Pull Request'
on:
pull_request:
branches:
- develop
- main
permissions:
contents: write
jobs:
update-bun-lockb:
name: "Update bun.lockb"
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- run: |
bun install --yarn --ignore-scripts
git add bun.lockb
git config --global user.name 'dependabot[bot]'
git config --global user.email 'dependabot[bot]@users.noreply.github.com'
git commit --amend --no-edit
git push --force --no-verify
test-build:
needs: update-bun-lockb
if: always()
uses: ./.github/workflows/test-build.yaml
permissions:
contents: write
e2e:
needs: test-build
if: always()
uses: ./.github/workflows/e2e.yaml
with:
smoke: ${{ github.base_ref != 'main' }}