Skip to content

Commit 0809f33

Browse files
committed
ci: reorder CI for linter
1 parent e569643 commit 0809f33

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ jobs:
2323
cache: 'yarn'
2424
- name: Install
2525
run: yarn install --frozen-lockfile
26-
- name: Lint
27-
run: yarn lint
2826
- name: Build
2927
run: yarn build
28+
# Linter has to run after the build because it relies on TS types
29+
- name: Lint
30+
run: yarn lint
3031
- name: Test
3132
run: yarn test --coverage
3233

0 commit comments

Comments
 (0)