Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cb960eb

Browse files
authoredJan 17, 2023
Merge branch 'main' into renovate/navikt-github-app-token-generator-digest
2 parents 29eeb5f + fbfb19a commit cb960eb

Some content is hidden

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

48 files changed

+1205
-357
lines changed
 

‎.github/workflows/e2e-appdir.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ jobs:
4141
env:
4242
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_BOT_AUTH_TOKEN }}
4343
NETLIFY_SITE_ID: 1d5a5c76-d445-4ae5-b694-b0d3f2e2c395
44-
NEXT_TEST_VERSION: canary
4544
- uses: actions/upload-artifact@v3
4645
if: ${{ always() }}
4746
name: Upload test results

‎.github/workflows/test-deno.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deno tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Git Checkout Deno Module
15+
uses: actions/checkout@v2
16+
- name: Use Deno Version ${{ matrix.deno-version }}
17+
uses: denolib/setup-deno@v2
18+
with:
19+
deno-version: vx.x.x
20+
- name: Test Deno
21+
run: deno test packages/runtime/src/templates/edge-shared/

0 commit comments

Comments
 (0)
Please sign in to comment.