-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- change the frontend structure - set the foundation for Tamagui to style all Mintter apps - update all build scripts with the new code structure
- Loading branch information
Showing
733 changed files
with
23,733 additions
and
72,751 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,14 @@ on: | |
- main | ||
paths: | ||
- '.github/workflows/audit-javascript.yml' | ||
- '**/pnpm-lock.yaml' | ||
- '**/yarn.lock' | ||
- '**/package.json' | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/audit-javascript.yml' | ||
- '**/pnpm-lock.yaml' | ||
- '**/yarn.lock' | ||
- '**/package.json' | ||
|
||
concurrency: | ||
|
@@ -29,29 +29,14 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: audit | ||
run: pnpm audit | ||
run: yarn audit |
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 |
---|---|---|
|
@@ -91,30 +91,10 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: 'Install native packages' | ||
if: "matrix.config.os == 'ubuntu-latest'" | ||
|
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 |
---|---|---|
|
@@ -28,36 +28,16 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
|
||
- name: Lint packages | ||
run: pnpm lint | ||
|
||
cache: "yarn" | ||
|
||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
# - name: Lint packages | ||
# run: yarn lint | ||
|
||
- name: Format files (Prettier) | ||
run: pnpm format | ||
run: yarn format | ||
|
||
# lint-go: | ||
# runs-on: ubuntu-latest | ||
|
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 |
---|---|---|
|
@@ -111,30 +111,10 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: 'Install native packages' | ||
if: "matrix.config.os == 'ubuntu-latest'" | ||
|
@@ -320,30 +300,10 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: Generate static updater manifest | ||
run: | ||
|
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 |
---|---|---|
|
@@ -60,30 +60,10 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: 'Install native packages' | ||
if: "matrix.config.os == 'ubuntu-latest'" | ||
|
@@ -264,30 +244,10 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: Generate static updater manifest | ||
run: | ||
|
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 |
---|---|---|
|
@@ -30,33 +30,13 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19 | ||
cache: "yarn" | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- uses: pnpm/[email protected] | ||
with: | ||
run_install: true | ||
- name: Install Dependencies | ||
run: YARN_CHECKSUM_BEHAVIOR=update yarn | ||
|
||
- name: Build Frontend Shared packages | ||
run: pnpm shared:build | ||
# - name: Build Frontend Shared packages | ||
# run: yarn shared:build | ||
|
||
- name: Run Frontend packages tests | ||
run: pnpm test | ||
run: yarn test |
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.