Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maximise CI transpile #7647

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ jobs:
run: node common/scripts/install-run-rush.js model-version

- name: Building...
run: node common/scripts/install-run-rush.js build -p 20
run: node common/scripts/install-run-rush.js build -p max

- name: Bundle...
run: node common/scripts/install-run-rush.js bundle -p 20
run: node common/scripts/install-run-rush.js bundle -p max

- name: Validate...
run: node common/scripts/install-run-rush.js validate -p 20
run: node common/scripts/install-run-rush.js validate -p max

- name: Cache build results
uses: actions/cache@v4
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
run: node common/scripts/install-run-rush.js install

- name: Docker Build
run: node common/scripts/install-run-rush.js docker:build -p 20
run: node common/scripts/install-run-rush.js docker:build -p max
env:
DOCKER_CLI_HINTS: false
- name: Prepare server
Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:
run: node common/scripts/install-run-rush.js install

- name: Docker Build
run: node common/scripts/install-run-rush.js docker:build -p 20
run: node common/scripts/install-run-rush.js docker:build -p max
env:
DOCKER_CLI_HINTS: false
- name: Prepare server
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:
run: node common/scripts/install-run-rush.js install

- name: Docker Build
run: node common/scripts/install-run-rush.js docker:build -p 20
run: node common/scripts/install-run-rush.js docker:build -p max
env:
DOCKER_CLI_HINTS: false
- name: Configure /etc/hosts
Expand Down Expand Up @@ -591,7 +591,7 @@ jobs:
- name: Model version from git tags
run: node common/scripts/install-run-rush.js model-version
- name: Package
run: node common/scripts/install-run-rush.js package --to desktop -p 20 -v
run: node common/scripts/install-run-rush.js package --to desktop -p max -v
- name: Package JSON
run: |
cd desktop-package
Expand Down
Loading