Skip to content

Commit f0d54e7

Browse files
committed
Move order of workflow steps
1 parent 1f51e4f commit f0d54e7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/checks.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ jobs:
3232
corepack enable
3333
yarn install
3434
35-
- name: "Lint codebase"
36-
run: yarn lint
37-
3835
- name: "Build packages"
3936
run: yarn build
37+
38+
# We need to lint after building so we have access to types (could use references but)
39+
- name: "Lint codebase"
40+
run: yarn lint
4041

4142
- name: "Version check"
4243
run: yarn version check

0 commit comments

Comments
 (0)