File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111jobs :
1212 setup :
13- name : Setup Repository
14- uses : ./.github/workflows/fn-setup.yaml
15- with :
16- cache-version : v1
17- deno-deps-cache-slice-name : ci
13+ name : Setup
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout repository
17+ uses : actions/checkout@v5
18+
19+ - name : Set up Repository
20+ uses : ./.github/actions/fn-setup
21+ with :
22+ cache-version : ${{ env.CACHE_VERSION }}
23+ deno-deps-cache-slice-name : ${{ env.CACHE_SLICE_NAME }}
1824
1925 test :
2026 name : Test
@@ -23,11 +29,13 @@ jobs:
2329 steps :
2430 - name : Checkout repository
2531 uses : actions/checkout@v5
32+
2633 # Now the Deno cache should be warmed up, so this should be much faster
2734 - name : Set up Repository
28- uses : ./.github/workflows /fn-setup.yaml
35+ uses : ./.github/actions /fn-setup
2936 with :
3037 cache-version : ${{ env.CACHE_VERSION }}
3138 deno-deps-cache-slice-name : ${{ env.CACHE_SLICE_NAME }}
39+
3240 - name : Test
3341 run : deno test --allow-read
You can’t perform that action at this time.
0 commit comments