maybe ?
All checks were successful
Code quality checks / quality (push) Successful in 7s

This commit is contained in:
creations 2025-04-10 06:19:58 -04:00
parent 22bec1bde6
commit 5eaae97c99
Signed by: creations
GPG key ID: 8F553AA4320FC711
2 changed files with 2 additions and 3 deletions

View file

@ -15,7 +15,6 @@ jobs:
run: | run: |
curl -fsSL https://bun.sh/install | bash curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun" export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
echo "$BUN_INSTALL/bin" >> $GITHUB_PATH echo "$BUN_INSTALL/bin" >> $GITHUB_PATH
- name: Run Biome via Bun - name: Run Biome via Bun

View file

@ -5,8 +5,8 @@
"scripts": { "scripts": {
"start": "bun run src/index.ts", "start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts --dev", "dev": "bun run --hot src/index.ts --dev",
"lint": "bunx biome check", "lint": "bunx biome ci .",
"lint:fix": "bunx biome check --fix", "lint:fix": "bunx biome ci . --apply",
"cleanup": "rm -rf logs node_modules bun.lockdb" "cleanup": "rm -rf logs node_modules bun.lockdb"
}, },
"devDependencies": { "devDependencies": {