aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-13 21:01:34 +0000
committerMohamedBassem <me@mbassem.com>2024-02-13 21:01:34 +0000
commitcb86c43e4c204f1e29a51b3be85f434b7c7172f5 (patch)
treee5ea0cce6463c3dc9ab0fe2fb01965a235c2adf7 /.github/workflows
parentda03fce5e5373e4791ccf0a885aaecff513156fe (diff)
downloadkarakeep-cb86c43e4c204f1e29a51b3be85f434b7c7172f5.tar.zst
build: Migrate from Makefiles to yarn scripts
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 68fe9fb3..44c238f4 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -20,12 +20,11 @@ jobs:
- name: Install deps
run: yarn install --immutable
- name: Lint
- run: yarn eslint .
+ run: yarn lint
- name: Format
- run: yarn prettier . --check
+ run: yarn format:check
- name: Prisma
- working-directory: packages/db
- run: yarn prisma generate
+ run: yarn prisma:generate
- name: Build the workers package
working-directory: packages/workers
run: yarn typecheck