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
10 changes: 3 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
with:
fetch-depth: 0
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- uses: nrwl/nx-set-shas@v3
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- uses: actions/setup-node@v4
with:
node-version: 22
Expand All @@ -36,7 +34,7 @@ jobs:
run: npx playwright install --with-deps
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: test
run: npx nx affected --target=e2e
run: npx nx run-many --target=e2e
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- uses: actions/upload-artifact@v4
if: always()
Expand Down Expand Up @@ -72,8 +70,6 @@ jobs:
with:
fetch-depth: 0
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- uses: nrwl/nx-set-shas@v3
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand All @@ -100,10 +96,10 @@ jobs:
run: npm ci
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Build
run: npx nx affected --target=build
run: npx nx run-many --target=build
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Tests
run: npx nx affected --target=test:ci --exclude=@netlify/build --parallel=3
run: npx nx run-many --target=test:ci --exclude=@netlify/build --parallel=3
if: ${{ !steps.release-check.outputs.IS_RELEASE }}

test-build:
Expand Down
Loading
Loading