Skip to content
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
with:
main-branch-name: 'master'

- name: Run build on affected projects
run: npx nx affected --target=build --parallel=3
- name: Run build on projects
run: npx nx run-many --target=build --parallel=3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to build all packages on a PR or just the ones affected ones?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. You may miss some of TS issues. The projects are not properly wired yet so we need to build all until the migration is done.

continue-on-error: false

- name: Run lint on affected projects
run: npx nx affected --target=lint --parallel=3
- name: Run lint on projects
run: npx nx run-many --target=lint --parallel=3
continue-on-error: false

# - name: Run typecheck on affected projects
Expand All @@ -47,6 +47,6 @@ jobs:
- name: Clear Jest cache
run: npx jest --clearCache

- name: Run tests on affected projects
run: npx nx affected --target=test --parallel=3 --coverage
- name: Run tests projects
run: npx nx run-many --target=test --parallel=3 --coverage
continue-on-error: false
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
with:
main-branch-name: 'master'

- name: Build affected packages
run: npx nx affected --target=build --parallel=3
- name: Build packages
run: npx nx run-many --target=build --parallel=3

- name: 🚀 Run Nx Release
run: |
Expand Down
47 changes: 3 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/ant-component-mapper/babel.config.js

This file was deleted.

Loading