-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(jsx-email,app-preview,create-jsx-email,plugin-inline,plugin-mini…
…fy,plugin-pretty): version 2.0.0 (#206) Co-authored-by: ganondev <ganonballgame@gmail.com> Co-authored-by: EJ <me@me> Co-authored-by: Paul Ehikhuemen <67395687+lordelogos@users.noreply.github.com> Co-authored-by: Release Workflow <release-workflow@jsx.email> Co-authored-by: Ben Cook <b@bencook.ca> Co-authored-by: Thomas Dondorf <thomasdondorf@users.noreply.github.com>
- Loading branch information
1 parent
b3fd188
commit 4197bb9
Showing
259 changed files
with
13,116 additions
and
8,553 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Run Tests | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: | ||
- edited | ||
- opened | ||
- synchronize | ||
push: | ||
branches: | ||
- '*' | ||
- '!main' | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
name: Run Tests | ||
|
||
steps: | ||
- name: Checkout Commit | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 10 | ||
|
||
# Needed for https://github.com/moonrepo/moon/issues/1060 | ||
- name: Force Update Main | ||
run: | | ||
git fetch origin | ||
git branch -f main origin/main | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Enable Corepack | ||
id: pnpm-setup | ||
run: | | ||
corepack enable | ||
corepack prepare pnpm@latest --activate | ||
pnpm config set script-shell "/usr/bin/bash" | ||
- name: Setup Moon | ||
uses: moonrepo/setup-toolchain@v0 | ||
|
||
- name: Sanity Check | ||
run: | | ||
echo git `git version`; | ||
echo branch `git branch --show-current`; | ||
echo node `node -v`; | ||
echo pnpm `pnpm -v` | ||
echo `moon --version` | ||
- name: pnpm install | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build Projects | ||
run: | | ||
moon jsx-email:build | ||
moon create-jsx-email:build | ||
moon run :build --query "project~plugin-*" | ||
- name: Package Tests | ||
env: | ||
FORCE_COLOR: 1 | ||
run: moon run :test --affected --concurrency 1 --remote | ||
|
||
- name: Smoke Test | ||
# Note: We're running `pnpm i` again so that pnpm places the `email` bin in root node_modules | ||
# We'll need that for the preview tests below | ||
run: | | ||
pnpm i | ||
moon smoke:run.ci |
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
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ projects: | |
globs: | ||
- 'apps/*' | ||
- 'packages/*' | ||
- 'test/*' | ||
sources: | ||
root: '.' | ||
vcs: | ||
|
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
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
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
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
Oops, something went wrong.