Skip to content

Commit 8734ddf

Browse files
committed
Added no cloud flag
1 parent 8c08536 commit 8734ddf

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/ci.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,22 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
# This enables task distribution via Nx Cloud
22-
# Run this command as early as possible, before dependencies are installed
23-
# Learn more at https://nx.dev/ci/reference/nx-cloud-cli#npx-nxcloud-startcirun
24-
# Uncomment this line to enable task distribution
25-
# - run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e-ci"
26-
2721
# Cache node_modules
2822
- uses: actions/setup-node@v4
2923
with:
3024
node-version: 20
3125
cache: 'npm'
3226

3327
- run: npm ci --legacy-peer-deps
34-
28+
3529
# Run linting
3630
- name: Run lint
37-
run: npx nx affected --target=lint --parallel
31+
run: npx nx affected --target=lint --parallel --no-cloud
3832

3933
# Run tests
4034
- name: Run tests
41-
run: npx nx affected --target=test --parallel
35+
run: npx nx affected --target=test --parallel --no-cloud
4236

4337
# Build all projects
4438
- name: Build all projects
45-
run: npx nx affected --target=build --parallel
39+
run: npx nx affected --target=build --parallel --no-cloud

0 commit comments

Comments
 (0)