Skip to content

Commit

Permalink
Replace run-many by affected (#2337)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter authored Nov 7, 2023
1 parent cf52ea0 commit 4a02c95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,22 +237,22 @@ jobs:
- name: Lint the affected projects
run: |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \
&& nx run-many --target=lint"
&& nx affected --target=lint"
- name: Build the affected projects
run: |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \
&& nx run-many --target=build,server"
&& nx affected --target=build,server"
- name: Test the affected projects (unit)
run: |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \
&& nx run-many --target=test"
&& nx affected --target=test"
- name: Test the affected projects (integration)
run: |
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \
&& nx run-many --target=integration-test"
&& nx affected --target=integration-test"
- name: Building the images of the SELECTED projects
run: |
Expand Down

0 comments on commit 4a02c95

Please sign in to comment.