File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -18,28 +18,22 @@ jobs:
18
18
with :
19
19
fetch-depth : 0
20
20
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
-
27
21
# Cache node_modules
28
22
- uses : actions/setup-node@v4
29
23
with :
30
24
node-version : 20
31
25
cache : ' npm'
32
26
33
27
- run : npm ci --legacy-peer-deps
34
-
28
+
35
29
# Run linting
36
30
- name : Run lint
37
- run : npx nx affected --target=lint --parallel
31
+ run : npx nx affected --target=lint --parallel --no-cloud
38
32
39
33
# Run tests
40
34
- name : Run tests
41
- run : npx nx affected --target=test --parallel
35
+ run : npx nx affected --target=test --parallel --no-cloud
42
36
43
37
# Build all projects
44
38
- name : Build all projects
45
- run : npx nx affected --target=build --parallel
39
+ run : npx nx affected --target=build --parallel --no-cloud
You can’t perform that action at this time.
0 commit comments