Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
lint:
runs-on: [self-hosted, X64, Linux, aws, ubuntu, ubuntu-2404]
runs-on: ["self-hosted", "linux", "x64", "ubuntu-2404", "aws"]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
run: bun run lint

typecheck:
runs-on: [self-hosted, X64, Linux, aws, ubuntu, ubuntu-2404]
runs-on: ["self-hosted", "linux", "x64", "ubuntu-2404", "aws"]
steps:
- uses: actions/checkout@v4

Expand All @@ -61,7 +61,7 @@ jobs:
run: bun run typecheck

test:
runs-on: [self-hosted, X64, Linux, aws, ubuntu, ubuntu-2404]
runs-on: ["self-hosted", "linux", "x64", "ubuntu-2404", "aws"]
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
release-please:
runs-on: [self-hosted, X64, Linux, aws, ubuntu, ubuntu-2404]
runs-on: ["self-hosted", "linux", "x64", "ubuntu-2404", "aws"]
outputs:
releases_created: ${{ steps.release.outputs.releases_created }}
release_created: ${{ steps.release.outputs.release_created }}
Expand All @@ -37,7 +37,7 @@ jobs:
publish:
needs: release-please
if: ${{ needs.release-please.outputs.release_created == 'true' }}
runs-on: [self-hosted, X64, Linux, aws, ubuntu, ubuntu-2404]
runs-on: ["self-hosted", "linux", "x64", "ubuntu-2404", "aws"]
permissions:
contents: read
id-token: write
Expand Down
16 changes: 16 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
# Add common paths for Homebrew and Bun
export PATH="/opt/homebrew/bin:/usr/local/bin:$HOME/.bun/bin:$PATH"

# Load Node.js version manager (fnm or nvm)
if [ -d "$HOME/.local/share/fnm" ]; then
# Load fnm
export FNM_PATH="$HOME/.local/share/fnm"
if [ -f "$FNM_PATH/fnm" ]; then
eval "$($FNM_PATH/fnm env --shell bash)"
fi
elif [ -s "$HOME/.nvm/nvm.sh" ]; then
# Load nvm
export NVM_DIR="$HOME/.nvm"
. "$NVM_DIR/nvm.sh"
fi

bunx lint-staged