Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
janglad committed Sep 18, 2024
1 parent cf9893e commit 04e17bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
node-version: 20.x
cache: "pnpm"
- name: "Install dependencies"
run: pnpm install --frozen-lockfile
- name: "Build"
run: pnpm build
run: pnpm install --filter "\!./apps/**" --frozen-lockfile
- name: "Build packages"
run: pnpm build-packages
- name: "Run type-check"
run: pnpm check-types
- name: "Run lint"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: "build"
run: pnpm build
run: pnpm install --filter "\!./apps/**" --frozen-lockfile
- name: "Build packages"
run: pnpm build-packages
- name: "Run type-check"
run: pnpm check-types
- name: "Run lint"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"release": "pnpm run build && changeset publish",
"build-packages": "turbo run build --filter=./packages/*",
"release": "pnpm run build-packages && changeset publish",
"knip": "knip",
"dev": "turbo run dev"
}
Expand Down

0 comments on commit 04e17bb

Please sign in to comment.