Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Feb 3, 2025
1 parent f7b15a5 commit 94c40d7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn format
- run: yarn lint
- run: yarn test
- run: yarn build
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run format
- run: bun run lint
- run: bun run test
- run: bun run build
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"build": "tsx ./build.ts",
"bin": "./bin",
"test": "vitest --run",
"prepack": "yarn build",
"prepack": "bun run build",
"release": "np",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
Expand Down Expand Up @@ -46,4 +46,4 @@
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}
}

0 comments on commit 94c40d7

Please sign in to comment.