Skip to content

Commit

Permalink
Move the type checking step after the build
Browse files Browse the repository at this point in the history
The build generates certain type definitions using the Relay compiler.
  • Loading branch information
JulianKniephoff committed Aug 11, 2020
1 parent a1abe38 commit 16cfd4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
- name: Installing frontend dependencies (npm ci)
working-directory: frontend
run: npm ci
- name: Typecheck frontend
working-directory: frontend
run: npm run typecheck
- name: Build frontend
working-directory: frontend
run: npx webpack --mode=development --display-error-details
- name: Typecheck frontend
working-directory: frontend
run: npm run typecheck
- name: Lint frontend
working-directory: frontend
run: npx eslint --max-warnings 0 src
Expand Down

0 comments on commit 16cfd4d

Please sign in to comment.