forked from ngworker/lumberjack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/extracting lumberjack core (#1)
- Loading branch information
1 parent
328bbfb
commit 4891e3c
Showing
331 changed files
with
25,731 additions
and
26,389 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
node_modules | ||
|
||
vite.config.ts |
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 |
---|---|---|
|
@@ -45,21 +45,21 @@ jobs: | |
# in the parallel-commands-on-agents command list | ||
# The --agent-count parameter must match the number-of-agents parameter | ||
init-commands: | | ||
yarn nx-cloud start-ci-run --stop-agents-after="e2e" --agent-count=4 | ||
pnpm nx-cloud start-ci-run --stop-agents-after="e2e" --agent-count=4 | ||
# Commands run in parallel on this DTE coordinator | ||
parallel-commands: | | ||
yarn nx-cloud record -- yarn nx format:check | ||
pnpm nx-cloud record -- pnpm nx format:check | ||
# Commands distributed between DTE agents | ||
# Distribution strategy for 2 vCPUs per hosted runner (GitHub Free): | ||
# lint: 2 tasks assigned at a time, 1 task per vCPU | ||
# test: 1 task assigned at a time with 2 parallel processes, 1 process per vCPU | ||
# build: 2 tasks assigned at a time, 1 task per vCPU | ||
# e2e: 1 task assigned at a time, 1 task total | ||
parallel-commands-on-agents: | | ||
yarn nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0 | ||
yarn nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2 | ||
yarn nx affected --target=build --parallel=2 | ||
yarn nx affected --target=e2e --parallel=1 | ||
pnpm nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0 | ||
pnpm nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2 | ||
pnpm nx affected --target=build --parallel=2 | ||
pnpm nx affected --target=e2e --parallel=1 | ||
# Commands run sequentially on this DTE coordinator after parallel jobs | ||
# final-commands: | | ||
|
||
|
@@ -110,7 +110,7 @@ jobs: | |
uses: ./.github/actions/setup | ||
# Uses the cache generated in the distributed step | ||
- name: Build docs | ||
run: yarn nx build docs-lumberjack-docs-app | ||
run: pnpm nx build docs-lumberjack-docs-app | ||
- name: Set up GitHub Pages | ||
uses: actions/configure-pages@v2 | ||
- name: Upload docs to GitHub Pages | ||
|
@@ -138,13 +138,13 @@ jobs: | |
uses: ./.github/actions/setup | ||
# Uses the cache generated in the distributed step (Needed for the sonar eslint reports). | ||
- name: Lint with reports | ||
run: yarn nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0 | ||
run: pnpm nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0 | ||
# Uses the cache generated in the distributed step (Needed for the sonar jest coverage reports). | ||
- name: Tests with coverage | ||
run: yarn nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2 | ||
run: pnpm nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2 | ||
|
||
- name: Configure Sonar report paths | ||
run: yarn configure-sonar-report-paths | ||
run: pnpm configure-sonar-report-paths | ||
|
||
- name: SonarCloud Scan | ||
uses: sonarsource/[email protected] | ||
|
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 |
---|---|---|
|
@@ -47,3 +47,5 @@ migrations.json | |
# Generated Docusaurus files | ||
.docusaurus/ | ||
.cache-loader/ | ||
|
||
.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
/reports | ||
/.angular/ | ||
.docusaurus/ | ||
**/.lib.swcrc | ||
|
||
# Generated files | ||
packages/**/CHANGELOG.md | ||
|
||
**/CHANGELOG.md |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.