We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ci.yml
1 parent c4ea388 commit d81cf5aCopy full SHA for d81cf5a
.github/workflows/ci.yml
@@ -35,10 +35,15 @@ jobs:
35
with:
36
node-version-file: .nvmrc
37
cache: pnpm
38
+ - name: Start Nx Agents
39
+ run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
40
- name: Install dependencies
41
run: pnpm install --frozen-lockfile --prefer-offline
42
- name: Run Tests
- run: pnpm run test:ci
43
+ run: pnpm run test:ci --parallel=3
44
+ - name: Stop Nx Agents
45
+ if: ${{ always() }}
46
+ run: npx nx-cloud stop-all-agents
47
- name: Publish
48
run: |
49
git config --global user.name 'Tanner Linsley'
0 commit comments