Skip to content

Commit

Permalink
ci: more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Dec 16, 2023
1 parent 06dc18c commit 5358a93
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deno.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ permissions:

env:
CI: true
DENO_DIR: .deno
DENO_VERSION: v1.39.x

jobs:
Expand All @@ -49,12 +48,12 @@ jobs:
- name: ⚙️ Cache Deno dependencies
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ${{ env.DENO_DIR }}
path: node_modules/
key: deno_cache-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('deno.json') }}
restore-keys: deno_cache-${{ runner.arch }}-${{ runner.os }}

- name: 📦 Install dependencies
run: deno cache src/dev.ts
run: deno cache src/main.ts

- name: 🕵️ Run linter, Verify formatting
run: deno task check
Expand Down

0 comments on commit 5358a93

Please sign in to comment.