Skip to content

chore(deps): update dependency @types/bun to v1.4.1 (#1173) #909

chore(deps): update dependency @types/bun to v1.4.1 (#1173)

chore(deps): update dependency @types/bun to v1.4.1 (#1173) #909

Workflow file for this run

# πŸ»β€β„οΈπŸ³ docker-manifest-action: Tiny, simple GitHub Action to link Docker manifests easily
# Copyright (c) 2022-2025 Noelware, LLC. <team@noelware.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: CI
on:
workflow_dispatch: {}
push:
branches:
- master
paths-ignore:
- '.github/**'
- '.vscode/**'
- '.prettierignore'
- 'bun.lock'
- '**.md'
- LICENSE
- renovate.json
pull_request:
types: [opened, synchronize]
paths-ignore:
- '.vscode/**'
- '.prettierignore'
- 'bun.lock'
- '**.md'
- LICENSE
- renovate.json
jobs:
ci:
name: General
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen
- run: bun lint
- run: bun check
# - run: bun test
build:
name: Update `build/` artifacts
runs-on: ubuntu-latest
needs: [ci] # Ensure that `ci` completes successfully.
if: ${{github.repository == 'Noelware/docker-manifest-action' && github.event_name != 'pull_request'}}
steps:
- uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen
- run: bun run build
- uses: EndBug/add-and-commit@v11
with:
add: 'build'
author_name: 'Noel[bot]'
author_email: noelbot@users.noreply.github.com
default_author: user_info
message: '[skip ci] :sparkles: Update build artifacts'
push: true