Skip to content

chore: add some debug logging #9

chore: add some debug logging

chore: add some debug logging #9

Workflow file for this run

name: chores
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
install-compile-test:
name: dev cycle
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v4
with:
node-version: latest
- uses: actions/checkout@v4
- run: bun install --frozen-lockfile
- run: bun compile
- run: bun test
build-docker-image:
name: packaging
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max