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

chore: update to nx 20.4.6 #4612

Merged
merged 1 commit into from
Feb 22, 2025
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build and test
env:
UESIO_DEV: "true" # required to ensure packui gets built
run: npx nx affected -t build test --configuration=ci --parallel=5
run: npx nx affected -t build test --configuration=ci --parallel=5 --verbose

- name: Prep for docker image
id: setDockerSHAs
Expand All @@ -84,7 +84,7 @@ jobs:
# We lint/test/build affected but in order to build image, we need to ensure everything
# is built. Build anything that hasn't been built yet (takes advantage of nx cache
# for anything already built from above)
npx nx run-many -t build
npx nx run-many -t build --verbose

# build values for docker image tags
VERSION_SUFFIX=${{ github.run_number }}.${{ github.run_attempt }}
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
run: npx nx format:check --verbose

- name: Lint
run: npx nx affected -t lint --configuration=ci --parallel=5
run: npx nx affected -t lint --configuration=ci --parallel=5 --verbose

typecheck:
name: Check types
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
run: npm ci

- name: Typecheck
run: npx nx affected -t typecheck --configuration=ci --parallel=5
run: npx nx affected -t typecheck --configuration=ci --parallel=5 --verbose

update-dev-branch:
name: Update Dev environment to latest image
Expand Down
Loading
Loading