-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
build: update NX #3251
build: update NX #3251
Conversation
Preview docs changes for b165520 at https://previews.ngrx.io/pr3251-b1655200/ |
Yikes, I'll have to take a look at the failing steps. Seems like these are green locally. |
a70f00c
to
030ec38
Compare
dcb8028
to
a19d660
Compare
3dc48d1
to
03ae744
Compare
03ae744
to
0b0f392
Compare
@@ -113,7 +113,7 @@ jobs: | |||
# Test | |||
- run: | |||
name: Run All Unit Tests | |||
command: yarn nx run-many --target=test --all | |||
command: yarn nx run-many --target=test --all --parallel=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to add this to make make the circle ci happy.
Otherwise, the following errors were thrown randomly.
> nx run component:test
Nx could not find process's output. Run the command without --parallel.
> nx run component-store:test
Nx could not find process's output. Run the command without --parallel.
I was under the impression that this was handled by the migration by NX.
@brandonroberts this could maybe be a bug in NX?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, if it's set in the nx.json
, it shouldn't be necessary to manually set it everywhere for CI
@@ -33,6 +33,11 @@ | |||
{ | |||
"files": ["*.ts"], | |||
"rules": { | |||
"@typescript-eslint/no-explicit-any": "off", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was bloating the output so I disabled it 😅
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
Closes #
What is the new behavior?
Does this PR introduce a breaking change?
Other information
While testing #3245, some tests of the example app weren't working anymore.
With this update, all tests are back to green.
To upgrade, I used the
nx migrate
commands.