Skip to content

Commit

Permalink
ci: cache lume cli (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Feb 23, 2024
1 parent cc82938 commit c895d2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pages.yaml
Expand Up @@ -28,6 +28,9 @@ jobs:
path: ${{ env.DENO_DIR }}
key: ${{ hashFiles('deno.lock') }}

- name: Cache Deno dependencies
run: deno cache ./**/*.ts https://deno.land/x/lume@v2.0.3/cli.ts

- name: Setup Deno environment
uses: denoland/setup-deno@v1
with:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4

- name: Load Deno Dependencies
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: ${{ env.DENO_DIR }}
key: ${{ hashFiles('deno.lock') }}
Expand All @@ -29,8 +29,6 @@ jobs:
run: deno lint
- name: Check formatting
run: deno fmt --check
- name: Cache Deno dependencies
run: deno cache ./**/*.ts

test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c895d2f

Please sign in to comment.