Skip to content

Commit

Permalink
Update ci and readme
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Bolton <ibolton@redhat.com>
  • Loading branch information
ibolton336 committed Oct 18, 2024
1 parent affb2f7 commit 1ca56c8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,15 @@ jobs:
with:
node-version-file: "vscode/.nvmrc"

- name: Install dependencies
- name: Install dependencies for vscode
working-directory: ./vscode
run: npm ci
run: |
npm ci
- name: Install dependencies for webview
working-directory: ./webview-ui
run: |
npm ci
- name: Build Package
working-directory: ./vscode
Expand Down
16 changes: 14 additions & 2 deletions vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,22 @@ You can author your README using Visual Studio Code. Here are some useful editor
cd vscode

# Install dependencies for both the extension and webview UI source code
npm run install:all
npm run install

# Build webview UI source code
npm run build:webview
npm run watch

cd ../webview

# Install dependencies for the webview UI source code
npm install

# Build webview UI source code and start the webview vite dev server
npm run start





```

Expand Down

0 comments on commit 1ca56c8

Please sign in to comment.