-
-
Notifications
You must be signed in to change notification settings - Fork 307
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 #1461 from safing/migration/mono-repo
Migrate to mono-repo
- Loading branch information
Showing
1,562 changed files
with
133,182 additions
and
1,160 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"repoId": "8f466ce7-4b75-4048-8b8a-cad5bf173aa0", | ||
"lastSync": 0 | ||
} |
This file was deleted.
Oops, something went wrong.
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,25 @@ | ||
go.work | ||
go.work.sum | ||
|
||
dist/ | ||
node_modules/ | ||
|
||
desktop/angular/node_modules | ||
desktop/angular/dist | ||
desktop/angular/dist-lib | ||
desktop/angular/dist-extension | ||
desktop/angular/.angular | ||
|
||
# Assets are ignored here because the symlink wouldn't work in | ||
# the buildkit container so we copy the assets directly in Earthfile. | ||
desktop/angular/assets | ||
|
||
|
||
desktop/tauri/src-tauri/target | ||
.gitignore | ||
AUTHORS | ||
CODE_OF_CONDUCT.md | ||
LICENSE | ||
README.md | ||
TESTING.md | ||
TRADEMARKS |
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,61 @@ | ||
name: Angular | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'desktop/angular/**' | ||
branches: | ||
- master | ||
- develop | ||
- migration/mono-repo | ||
|
||
pull_request: | ||
paths: | ||
- 'desktop/angular/**' | ||
branches: | ||
- master | ||
- develop | ||
- migration/mono-repo | ||
|
||
jobs: | ||
lint: | ||
name: Linter | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: desktop/angular | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- run: npm install | ||
|
||
- uses: sibiraj-s/action-eslint@v3 | ||
with: | ||
annotations: true | ||
extensions: 'ts,html' | ||
working-directory: desktop/angular | ||
|
||
test: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: earthly/actions-setup@v1 | ||
with: | ||
version: v0.8.0 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build angular projects | ||
run: earthly --ci --remote-cache=ghcr.io/safing/build-cache --push +build-angular |
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,38 @@ | ||
name: Tauri | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'desktop/tauri/**' | ||
branches: | ||
- master | ||
- develop | ||
- migration/mono-repo | ||
|
||
pull_request: | ||
paths: | ||
- 'desktop/tauri/**' | ||
branches: | ||
- master | ||
- develop | ||
- migration/mono-repo | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: earthly/actions-setup@v1 | ||
with: | ||
version: v0.8.0 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build angular projects | ||
run: earthly --ci --remote-cache=ghcr.io/safing/build-cache --push +tauri-release |
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 @@ | ||
{} |
Oops, something went wrong.