Skip to content

Commit

Permalink
Update test.yaml
Browse files Browse the repository at this point in the history
assafkamil authored Nov 10, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 1157204 commit e5e5685
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -44,13 +44,13 @@ jobs:
- name: Determine Affected Projects
id: affected
run: |
echo "::set-output name=build::$(pnpm nx affected:build --base=origin/main --head=HEAD --plain)"
echo "::set-output name=test::$(pnpm nx affected:test --base=origin/main --head=HEAD --plain)"
echo "::set-output name=build::$(pnpm nx affected:build --base=origin/main --head=HEAD --plain --all)"
echo "::set-output name=test::$(pnpm nx affected:test --base=origin/main --head=HEAD --plain --all)"
- name: Build Affected Projects
if: steps.affected.outputs.build != ''
run: pnpm nx affected:build --base=origin/main --head=HEAD
run: pnpm nx affected:build --base=origin/main --head=HEAD --all

- name: Test Affected Projects
if: steps.affected.outputs.test != ''
run: pnpm nx affected:test --base=origin/main --head=HEAD
run: pnpm nx affected:test --base=origin/main --head=HEAD --all

0 comments on commit e5e5685

Please sign in to comment.