Skip to content

Commit 3dcbbf5

Browse files
committed
bun workflow
1 parent 64ad6ab commit 3dcbbf5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/main.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ jobs:
1010
TWITTER_COOKIE: ${{ secrets.TWITTER_COOKIE }}
1111
steps:
1212
- uses: actions/checkout@v3
13-
- uses: pnpm/action-setup@v2
13+
- uses: oven-sh/setup-bun@v1
1414
with:
15-
version: 8
15+
bun-version: latest
1616
- uses: actions/setup-node@v3
1717
with:
1818
node-version: 16.x
19-
cache: "pnpm"
2019

21-
- run: pnpm install --frozen-lockfile
22-
- run: pnpm run ci
20+
- run: bun install --frozen-lockfile
21+
- run: bun run ci
2322

src/classes/user.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RawUser } from "../types.js"
1+
import type { RawUser } from "../types.js"
22

33
export default class User {
44
readonly id: string

0 commit comments

Comments
 (0)