Skip to content

Commit 59c3670

Browse files
authoredApr 19, 2022
feat!: add support for Edge Functions (#4550)
1 parent fbd4510 commit 59c3670

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3590
-5585
lines changed
 

‎.github/workflows/codeql.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
uses: github/codeql-action/init@v1
2929
with:
3030
languages: 'javascript'
31+
paths-ignore:
32+
- '**/*.test.js'
3133

3234
- name: Perform CodeQL Analysis
3335
uses: github/codeql-action/analyze@v1

‎.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ jobs:
8282
cache-dependency-path: 'npm-shrinkwrap.json'
8383
check-latest: true
8484
if: '${{!steps.release-check.outputs.IS_RELEASE}}'
85+
- name: Setup Deno
86+
uses: denoland/setup-deno@v1
87+
with:
88+
deno-version: v1.x
8589
- name: Install core dependencies
8690
run: npm ci --no-audit
8791
if: '${{!steps.release-check.outputs.IS_RELEASE}}'

0 commit comments

Comments
 (0)