Skip to content

Commit 92836bf

Browse files
disable unnecessary setups for a spike branch (#268)
1 parent 877dad7 commit 92836bf

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Build affected
3939
run: npx nx affected --target=build --base=origin/main --verbose
4040

41-
- name: Lint affected
42-
run: npx nx affected --target=lint --base=origin/main --verbose
41+
# - name: Lint affected
42+
# run: npx nx affected --target=lint --base=origin/main --verbose
4343

44-
- name: Test affected
45-
run: npx nx affected --target=test --base=origin/main --verbose
44+
# - name: Test affected
45+
# run: npx nx affected --target=test --base=origin/main --verbose
File renamed without changes.

nx.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
},
3030
"typecheck": {
3131
"cache": true
32-
},
33-
"lint": {
34-
"cache": true
3532
}
3633
},
3734
"plugins": [

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"license": "MIT",
55
"scripts": {
66
"build": "nx run-many --target=build --all",
7-
"lint": "nx run-many --target=lint --all --verbose",
8-
"test": "nx run-many --target=test --all --verbose",
7+
"_lint": "nx run-many --target=lint --all --verbose",
8+
"_test": "nx run-many --target=test --all --verbose",
99
"nx:sync": "nx sync",
10-
"prepare": "husky",
10+
"_prepare": "husky",
1111
"ci:release": "nx run @internal/release:run"
1212
},
1313
"private": true,

0 commit comments

Comments
 (0)