Skip to content

Commit

Permalink
Modifying Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Nov 20, 2023
1 parent 6183eee commit 8f9d48a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build
- name: Build and Lint
run: pnpm run ci
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"version": "1.0.0",
"description": "",
"scripts": {
"build": "turbo run build --filter=./packages/\\*",
"build": "turbo build --filter=./packages/\\*",
"lint": "turbo lint",
"ci": "turbo build lint --filter=./packages/\\*",
"release": "changeset publish",
"version": "changeset version"
},
Expand Down
6 changes: 1 addition & 5 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
"!.next/cache/**"
]
},
"deploy": {
"dependsOn": [
"^build"
]
}
"lint": {}
}
}

0 comments on commit 8f9d48a

Please sign in to comment.