Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: checkout
uses: actions/checkout@v3
- name: build and test
run: make frontend && git diff --exit-code
run: TYPECHECK=true make frontend && git diff --exit-code
- name: Report coverage
uses: codecov/codecov-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .mk/standalone.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ start-standalone-mock: YQ build-backend install-frontend ## Run backend using mo
.PHONY: just-build-frontend
just-build-frontend: ## Build frontend
@echo "### Building frontend"
cd web && npm run build${BUILDSCRIPT}
cd web && TYPECHECK=${TYPECHECK} npm run build${BUILDSCRIPT}

.PHONY: build-frontend-standalone
build-frontend-standalone: install-frontend fmt-frontend ## Run npm install, format and build frontend as standalone
Expand Down
1 change: 0 additions & 1 deletion Dockerfile.cypress
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ COPY --chown=node web web
COPY mocks mocks

WORKDIR /opt/app-root/web
RUN npm run format-all
RUN npm run build$BUILDSCRIPT
RUN npm run build:static

Expand Down
1 change: 0 additions & 1 deletion Dockerfile.downstream
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ COPY --chown=default web web
COPY --chown=default mocks mocks

WORKDIR /opt/app-root/web
RUN npm run format-all
RUN npm run build
RUN npm run build:static

Expand Down
1 change: 0 additions & 1 deletion Dockerfile.front
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ COPY --chown=node web web
COPY mocks mocks

WORKDIR /opt/app-root/web
RUN npm run format-all
RUN npm run build$BUILDSCRIPT
RUN npm run build:static

Expand Down
Loading