Skip to content

Commit

Permalink
feat(bezier-vscode): rm install step in ci, unnecessary yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Dec 10, 2024
1 parent faf7771 commit 82bdac2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
- name: Install Dependencies
run: yarn install

- name: Install VSCode Extension Dependencies
run: |
cd packages/bezier-vscode/client && yarn install
cd ../server && yarn install
- name: TurboRepo Local Server
uses: felixmosh/turborepo-gh-artifacts@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"vscode:prepublish": "yarn build",
"install-dependencies": "cd client && yarn && cd ../server && yarn && cd ../ && yarn",
"install-dependencies": "cd client && yarn && cd ../server && yarn && cd ../ ",
"package": "yarn install-dependencies && yarn dlx vsce package --no-yarn",
"publish": "yarn install-dependencies && yarn dlx vsce publish --no-yarn --skip-duplicate"
}
Expand Down

0 comments on commit 82bdac2

Please sign in to comment.