Skip to content

Commit

Permalink
individual build jobs as steps
Browse files Browse the repository at this point in the history
  • Loading branch information
51ngul4r1ty committed Feb 10, 2024
1 parent 44d95b3 commit 06bd1af
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,27 @@ jobs:
echo
- name: Install NPM packages
run: npm ci -ws
- name: Build All Packages
- name: Build Rich Types Package
run: |
echo Building...
npm run build-pkg:rich-types
- name: Build Rich Types Package
run: |
echo Building...
npm run build-pkg:rich-types
- name: Build Client SDK
run: |
echo Building...
npm run build-pkg:client-sdk
- name: Build Shared Package
run: |
echo Building...
npm run build-pkg:shared
- name: Build VS Code Extension
run: |
echo Building...
npm run build-pkg:vscode-extension
- name: Build Web App
run: |
echo Building...
npm run build-pkg:web-app

0 comments on commit 06bd1af

Please sign in to comment.