Skip to content

Commit d636d2e

Browse files
chore: add checkout step
1 parent 531462c commit d636d2e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/format.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ on:
1414
- 'bun.lockb'
1515
- 'src-tauri/Cargo.lock'
1616
- '.github/workflows/format.yml'
17-
pull_request:
1817
workflow_dispatch:
1918

2019
jobs:
21-
format-frontend:
20+
format:
2221
runs-on: 'ubuntu-24.04'
2322
steps:
23+
- uses: actions/checkout@v4
24+
2425
- name: Setup Bun
2526
uses: oven-sh/setup-bun@v2
2627
with:
@@ -30,10 +31,7 @@ jobs:
3031
uses: dtolnay/rust-toolchain@stable
3132

3233
- name: install bun dependencies
33-
run: |
34-
ls
35-
ls ..
36-
bun i
34+
run: bun i
3735

3836
- name: frontend checks
3937
run: bun format

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
contents: write
1919
runs-on: 'ubuntu-24.04'
2020
steps:
21+
- uses: actions/checkout@v4
22+
2123
- name: Setup Bun
2224
uses: oven-sh/setup-bun@v2
2325
with:
2426
bun-version: latest
2527

2628
- name: install bun dependencies
2729
run: |
28-
echo $PWD
29-
ls
3030
bun i
3131
3232
@@ -41,6 +41,8 @@ jobs:
4141
contents: write
4242
runs-on: 'ubuntu-24.04'
4343
steps:
44+
- uses: actions/checkout@v4
45+
4446
- name: Setup Bun
4547
uses: oven-sh/setup-bun@v2
4648
with:

0 commit comments

Comments
 (0)