Skip to content

Commit

Permalink
build: wait for build before typechecking
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Aug 8, 2024
1 parent 1ea8ce5 commit 95cd389
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- run: npm run lint:ci
- run: npm run prettier:ci

typelint:
typecheck:
<<: *nodelts
steps:
- *workspace
Expand Down Expand Up @@ -139,10 +139,10 @@ workflows:
<<: *triggerable-by-tag
requires:
- checkout_code
- typelint:
- typecheck:
<<: *triggerable-by-tag
requires:
- checkout_code
- build
- nodefetch3:
<<: *triggerable-by-tag
<<: *run-after-first-jobs
Expand All @@ -169,7 +169,7 @@ workflows:
# - firefox
- build
- module-compat
- typelint
- typecheck
- commonjs
- jest
filters:
Expand Down
1 change: 0 additions & 1 deletion packages/fetch-mock/types/index.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import fetchMock from '..';

fetchMock.mock();
fetchMock.mock("http://test.com", 200);
fetchMock.mock("http://test.com", 200, {
Expand Down

0 comments on commit 95cd389

Please sign in to comment.