Skip to content

Commit 18f18e3

Browse files
authored
ci: install deno for e2e tests (#126)
1 parent 3e743de commit 18f18e3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: .github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Deno
2121
uses: denoland/setup-deno@v1
2222
with:
23-
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/e55f825bd985d3c92e21d1b765d71e70d5628fba/node/bridge.ts#L17
23+
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/main/node/bridge.ts#L17
2424
deno-version: v1.37.0
2525
- name: 'Install dependencies'
2626
run: npm ci

Diff for: .github/workflows/test-e2e.yml

+6
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,12 @@ jobs:
110110
run: pnpm add --workspace-root @next/swc-linux-x64-gnu@${{ env.NEXT_VERSION }}
111111
working-directory: ${{ env.next-path }}
112112

113+
- name: Install Deno
114+
uses: denoland/setup-deno@v1
115+
with:
116+
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/main/node/bridge.ts#L17
117+
deno-version: v1.37.0
118+
113119
- name: install runtime
114120
run: npm install --ignore-scripts
115121
working-directory: ${{ env.runtime-path }}

0 commit comments

Comments
 (0)