-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5603 from netlify/integrate-edge-bundler-repo
chore: integrate edge-bundler
- Loading branch information
Showing
222 changed files
with
25,600 additions
and
11,791 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,9 +51,12 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest, macOS-latest, windows-latest] | ||
node-version: ['*'] | ||
# Must include the minimum deno version from the `DENO_VERSION_RANGE` constant in `node/bridge.ts`. | ||
deno-version: ['v1.37.0', 'v1.x'] | ||
include: | ||
- os: ubuntu-latest | ||
node-version: '14.16.0' | ||
deno-version: 'v1.x' | ||
fail-fast: false | ||
steps: | ||
# Sets an output parameter if this is a release PR | ||
|
@@ -79,6 +82,13 @@ jobs: | |
- name: Install npm@7 | ||
run: npm install -g npm@7 | ||
if: ${{ matrix.node-version == '14.16.0' && !steps.release-check.outputs.IS_RELEASE }} | ||
- name: Setup Deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ matrix.deno-version }} | ||
if: ${{ !steps.release-check.outputs.IS_RELEASE }} | ||
- name: Setup Deno dependencies | ||
run: deno cache https://deno.land/x/[email protected]/eszip.ts | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# don't format fixtures (sometimes faulty behaviour is desired) | ||
packages/*/tests/**/fixtures/** | ||
packages/*/test/**/fixtures/** | ||
packages/framework-info/test/fixtures/** | ||
# don't lint outputs | ||
packages/*/lib | ||
# don't lint deno files | ||
packages/edge-bundler/deno/** | ||
# don't lint vendored files | ||
packages/edge-bundler/*/vendor/** | ||
# don't lint changelog files as they get auto-generated | ||
CHANGELOG.md | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.