Skip to content

Commit 35d9666

Browse files
committed
chore: fix workflows
Signed-off-by: Frederik Bußmann <[email protected]>
1 parent 077dcb3 commit 35d9666

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: oven-sh/setup-bun@v2
1818

1919
- name: Install dependencies
20-
run: bun install --frozen-lockfile
20+
run: bun install
2121

2222
- name: Lint
2323
run: bun run lint
@@ -30,7 +30,7 @@ jobs:
3030
- uses: oven-sh/setup-bun@v2
3131

3232
- name: Install dependencies
33-
run: bun install --frozen-lockfile
33+
run: bun install
3434

3535
- name: Typecheck Module
3636
run: bun run typecheck
@@ -49,7 +49,7 @@ jobs:
4949
registry-url: 'https://registry.npmjs.org'
5050

5151
- name: Install dependencies
52-
run: bun install --frozen-lockfile
52+
run: bun install
5353

5454
- name: Build
5555
run: bun run build

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: oven-sh/setup-bun@v2
1515

1616
- name: Install dependencies
17-
run: bun install --frozen-lockfile
17+
run: bun install
1818

1919
- name: Lint
2020
run: bun run lint
@@ -26,7 +26,7 @@ jobs:
2626
- uses: oven-sh/setup-bun@v2
2727

2828
- name: Install dependencies
29-
run: bun install --frozen-lockfile
29+
run: bun install
3030

3131
- name: Typecheck Module
3232
run: bun run typecheck
@@ -40,7 +40,7 @@ jobs:
4040
- uses: oven-sh/setup-bun@v2
4141

4242
- name: Install dependencies
43-
run: bun install --frozen-lockfile
43+
run: bun install
4444

4545
- name: Build
4646
run: bun run build

0 commit comments

Comments
 (0)