Skip to content

Commit 2ce7432

Browse files
authored
Merge pull request #20299 from wagenet/build-types-when-checking
Build types when checking
2 parents d19d210 + 7073f8c commit 2ce7432

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ jobs:
4343
cache: yarn
4444
- name: install dependencies
4545
run: yarn install --frozen-lockfile --non-interactive
46-
- name: build stable type definitions
47-
run: yarn build:types
4846
- name: Check published types
4947
run: yarn type-check:types
5048

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"test:node": "qunit tests/node/**/*-test.js",
5252
"test:browserstack": "node bin/run-browserstack-tests.js",
5353
"type-check:internals": "tsc --noEmit",
54-
"type-check:types": "tsc --noEmit --project type-tests",
54+
"type-check:types": "yarn build:types && tsc --noEmit --project type-tests",
5555
"type-check": "npm-run-all type-check:*"
5656
},
5757
"dependencies": {

0 commit comments

Comments
 (0)