8000 [CI] Remove parallel execution and add verbose logging by joluj · Pull Request #586 · jvalue/jayvee · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[CI] Remove parallel execution and add verbose logging #586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2024
Merged
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
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 --parallel=3
run: npx nx affected --target=build --configuration=prod --verbose

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

- name: Test
run: npx nx affected --target=test --parallel=3 --base=remotes/origin/main --head=HEAD --ci
run: npx nx affected --target=test --verbose --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 --parallel=3 --base=remotes/origin/main --head=HEAD --ci
run: npx nx affected --target=pre-publish --verbose --base=remotes/origin/main --head=HEAD --ci

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