Skip to content

Commit 45fb6dd

Browse files
committed
ci: add vendor step before running deno tests
1 parent ce05e85 commit 45fb6dd

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/deno-test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ jobs:
1212
uses: denoland/setup-deno@v1
1313
with:
1414
deno-version: v1.x.x
15+
- name: Vendor Deno modules
16+
run: deno vendor edge-runtime/vendor.ts --output=edge-runtime/vendor --force
1517
- name: Test
1618
run: deno test -A edge-runtime/

edge-runtime/vendor.ts

+1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ import 'https://deno.land/[email protected]/path/mod.ts'
1212

1313
import 'https://deno.land/x/[email protected]/index.ts'
1414
import 'https://deno.land/x/[email protected]/src/index.ts'
15+
import 'https://deno.land/x/[email protected]/http/cookie.ts'
1516

1617
import 'https://v1-7-0--edge-utils.netlify.app/logger/mod.ts'

0 commit comments

Comments
 (0)