Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
foyarash committed Oct 2, 2024
1 parent a3e8a68 commit bb691bd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
run: docker compose up -d
- name: Install dependencies
run: yarn install
- name: Build packages
run: yarn turbo run build --filter=!apps/*"
- name: Run linter
run: yarn lint
- name: Run typecheck
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/vercel-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- name: Install Dependencies
run: yarn install

- name: Build packages
run: yarn turbo run build --filter=!apps/*"

- name: Install Vercel CLI
run: npm install --global vercel@latest

Expand Down
2 changes: 0 additions & 2 deletions packages/next-admin/src/pageRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { formatSearchFields, getParamsFromUrl } from "./utils/server";
// Router
export const getNextAdminProps = async ({
prisma,
schema,
basePath,
apiBasePath,
options,
Expand All @@ -24,7 +23,6 @@ export const getNextAdminProps = async ({
const props = await getPropsFromParams({
options,
prisma,
schema,
basePath,
apiBasePath,
searchParams: requestOptions,
Expand Down
1 change: 0 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"start": {},
"build": {
"dependsOn": [
"^typecheck",
"^build"
],
"outputs": [
Expand Down

0 comments on commit bb691bd

Please sign in to comment.