Skip to content
Merged
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
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*/build/*
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Build and lint

on:
pull_request:
Expand Down Expand Up @@ -29,6 +29,12 @@ jobs:
- name: Install
run: npm run prefrontend && npm run prebackend

- name: Build frontend
run: cd frontend && CI=false npm run build

- name: Build backend
run: cd backend && CI=false npm run build

- name: ESLint
run: npm run eslint

Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
dist
package-lock.json
build
build
.github