We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c79f3 commit 136d870Copy full SHA for 136d870
.github/workflows/pr-builder.yml
@@ -118,6 +118,10 @@ jobs:
118
- name: 🧩 Install Dependencies
119
id: install-dependencies
120
run: pnpm install
121
+
122
+ - name: 🏗️ Build
123
+ id: build
124
+ run: pnpm build
125
126
- name: ☄️ Check Type Errors
127
run: pnpm nx affected --target=typecheck --parallel=3 --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
nx.json
@@ -15,6 +15,11 @@
15
"dependsOn": [
16
"^build"
17
]
18
+ },
19
+ "typecheck": {
20
+ "dependsOn": [
21
+ "^build"
22
+ ]
23
}
24
},
25
"plugins": []
0 commit comments