Skip to content

✏ improving logging system #5

✏ improving logging system

✏ improving logging system #5

Workflow file for this run

name: CI
on: push
permissions: read-all
jobs:
test-build:
strategy:
matrix:
bun-version: [latest, "1.1.4"]
name: Test Builds
runs-on: ubuntu-latest
steps:
- name: βš™οΈ Checkout Repo
uses: actions/checkout@v4
- name: 🧹 Lint Prettier
uses: hudsonm62/prettier-cli@v1.0.0
- name: 🍞 Setup Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- name: πŸ—ƒ Install Deps
run: bun install --frozen-lockfile #--production
- name: πŸ“¦ Build Package
run: bun run bundle -o dist-ci --debug
- name: βœ… Verify output with Commited
#uses: hudsonm62/compare-action@v1
run: diff -qr dist dist-ci