File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,17 @@ jobs:
19
19
steps :
20
20
- name : Checkout
21
21
uses : actions/checkout@v4
22
-
22
+ with :
23
+ token : ${{ secrets.GITHUB_TOKEN }}
24
+
23
25
- name : Install bun
24
26
uses : oven-sh/setup-bun@v2
25
27
26
28
- name : Install dependencies
27
29
run : bun install
28
30
29
- - name : Install dependencies # (assuming your project has dependencies)
30
- run : bun install # You can use npm/yarn/pnpm instead if you prefer
31
+ - name : Run linter
32
+ run : bun run lint
31
33
32
34
- name : Check for changes
33
35
id : verify-changed-files
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
test :
15
15
runs-on : ubuntu-latest
16
+ env :
17
+ THUMBNAIL_URL : ${{ vars.THUMBNAIL_URL }}
16
18
17
19
steps :
18
20
- name : Checkout
19
21
uses : actions/checkout@v4
20
-
22
+
21
23
- name : Install bun
22
24
uses : oven-sh/setup-bun@v2
23
-
24
- - name : Install dependencies # (assuming your project has dependencies)
25
- run : bun install # You can use npm/yarn/pnpm instead if you prefer
25
+
26
+ - name : Install dependencies
27
+ run : bun install
26
28
27
29
- name : Run tests
28
30
run : bun run test
You can’t perform that action at this time.
0 commit comments