Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/actions/setup-bun-and-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,15 @@ runs:
with:
bun-version: ${{ inputs.bun-version }}

- name: Show Versions
run: |
echo "Bun version:" $(bun --version)
echo "Node version:" $(node --version)
echo "Working directory: $(pwd)"
shell: bash

- name: Install Dependencies
run: bun install --frozen-lockfile
run: bun install --frozen-lockfile --no-progress
shell: bash

- name: Check Format
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-bun.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TLDR: GitHub Actions workflow for CI using Bun runtime and package manager
name: CI (Bun)
name: CI

on:
push:
Expand Down
86 changes: 0 additions & 86 deletions .github/workflows/ci.yml

This file was deleted.

10 changes: 8 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@
"noEmit": true
},
"include": ["packages/*/src/**/*"],
"exclude": ["node_modules", "**/dist", "**/coverage", "**/*.spec.ts", "**/__tests__"]
}
"exclude": [
"node_modules",
"**/dist",
"**/coverage",
"**/*.spec.ts",
"**/__tests__"
]
}
Loading