Skip to content

Commit

Permalink
Remove parallel execution
Browse files Browse the repository at this point in the history
  • Loading branch information
joluj committed Jun 13, 2024
1 parent d75e9d2 commit d4c8559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ jobs:
run: npm run generate

- name: Build
run: npx nx affected --target=build --configuration=prod --verbose
run: npx nx affected --target=build --verbose --parallel=1 --configuration=prod

- name: Lint
run: npx nx affected --target=lint --verbose --maxWarnings=0
run: npx nx affected --target=lint --verbose --parallel=1 --maxWarnings=0

- name: Test
run: npx nx affected --target=test --verbose --base=remotes/origin/main --head=HEAD --ci
run: npx nx affected --target=test --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci

# Ensure this works for future release publishing
- name: Publish Dry-Run
run: npx nx affected --target=pre-publish --verbose --base=remotes/origin/main --head=HEAD --ci
run: npx nx affected --target=pre-publish --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci

# Ensure this works for future release publishing
- name: Pack VSCode Extension
Expand Down

0 comments on commit d4c8559

Please sign in to comment.